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' );
}