diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-04-15 13:51:15 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2008-04-15 13:51:15 +0000 |
commit | ea2e58b90178b6e68f45e262267f64a49b928ccc (patch) | |
tree | 4ff0a0dc0a73cde3160793ef03b279fff117df6d /lib/Test | |
parent | c53f1caa29d8829011cc4dd8948bd9947d957fba (diff) | |
download | perl-ea2e58b90178b6e68f45e262267f64a49b928ccc.tar.gz |
Sync with CPAN's version of the More.t test in Test::Simple
and delete duplicated test module Dummy.pm. (test now
expected to fail)
p4raw-id: //depot/perl@33688
Diffstat (limited to 'lib/Test')
-rw-r--r-- | lib/Test/Simple/t/More.t | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Test/Simple/t/More.t b/lib/Test/Simple/t/More.t index 8ea1368320..b4bac92d6a 100644 --- a/lib/Test/Simple/t/More.t +++ b/lib/Test/Simple/t/More.t @@ -3,7 +3,7 @@ BEGIN { if( $ENV{PERL_CORE} ) { chdir 't'; - @INC = qw(../lib lib); + @INC = '../lib'; } } @@ -17,7 +17,7 @@ $@ = $Err; $! = $Errno; use_ok('Dummy'); -is( $Dummy::VERSION, '5.562', 'use_ok() loads a module' ); +is( $Dummy::VERSION, '0.01', 'use_ok() loads a module' ); require_ok('Test::More'); |