Sync with CPAN's version of the More.t test in Test::Simple
Rafael Garcia-Suarez [Tue, 15 Apr 2008 13:51:15 +0000 (13:51 +0000)]
and delete duplicated test module Dummy.pm. (test now
expected to fail)

p4raw-id: //depot/perl@33688

lib/Test/Simple/t/More.t
t/lib/Dummy.pm [deleted file]

index 8ea1368..b4bac92 100644 (file)
@@ -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');
 
 
diff --git a/t/lib/Dummy.pm b/t/lib/Dummy.pm
deleted file mode 100644 (file)
index 504330f..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-package Dummy;
-
-# Attempt to emulate a bug with finding the version in Exporter.
-$VERSION = '5.562';