Change 33688 by [EMAIL PROTECTED] on 2008/04/15 13:51:15
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)
Affected files ...
... //depot/perl/lib/Test/Simple/t/More.t#12 edit
... //depot/perl/t/lib/Dummy.pm#2 delete
Differences ...
==== //depot/perl/lib/Test/Simple/t/More.t#12 (text) ====
Index: perl/lib/Test/Simple/t/More.t
--- perl/lib/Test/Simple/t/More.t#11~31911~ 2007-09-19 07:28:28.000000000
-0700
+++ perl/lib/Test/Simple/t/More.t 2008-04-15 06:51:15.000000000 -0700
@@ -3,7 +3,7 @@
BEGIN {
if( $ENV{PERL_CORE} ) {
chdir 't';
- @INC = qw(../lib lib);
+ @INC = '../lib';
}
}
@@ -17,7 +17,7 @@
$! = $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');
End of Patch.