Skip Menu |

This queue is for tickets about the lib CPAN distribution.

Report information
The Basics
Id: 96927
Status: new
Priority: 0/
Queue: lib

People
Owner: Nobody in particular
Requestors: jkeenan [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: dist/lib/t/01lib.t: Add description for test lacking one
I committed the attached patch to the version of dist/lib/t/01lib.t in Perl 5 blead before I realized that it was dual-life. As I only changed a test file, I didn't increment the version number. Hope that's okay. Thank you very much. Jim Keenan
Subject: dist_lib_t_01lib_t.diff
diff --git a/dist/lib/t/01lib.t b/dist/lib/t/01lib.t index f58fce5..2a103d4 100644 --- a/dist/lib/t/01lib.t +++ b/dist/lib/t/01lib.t @@ -62,7 +62,7 @@ BEGIN { is( eval { do 'Yup.pm' }, 42, 'do() works' ); ok( eval { require Yup; }, ' require()' ); ok( eval "use Yup; 1;", ' use()' ); - is( $@, '' ); + is( $@, '', 'last "eval()" parsed and executed correctly' ); is_deeply(\@OrigINC, \@lib::ORIG_INC, '@lib::ORIG_INC' ); }