Move the NoExporter test module under Test::Simple
Rafael Garcia-Suarez [Tue, 15 Apr 2008 15:04:29 +0000 (15:04 +0000)]
(part of a plan to have modules self contained, and removing test modules from t/lib)

p4raw-id: //depot/perl@33692

MANIFEST
lib/Test/Simple/t/lib/NoExporter.pm [moved from t/lib/NoExporter.pm with 100% similarity]
lib/Test/Simple/t/use_ok.t

index 9ddf38c..205d399 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -2753,7 +2753,8 @@ lib/Test/Simple/t/is_deeply_fail.t        Test::More test, is_deeply()
 lib/Test/Simple/t/is_deeply_with_threads.t     Test::More test
 lib/Test/Simple/t/is_fh.t      Test::Builder test, _is_fh()
 lib/Test/Simple/t/lib/Dummy.pm Test::More test module
-lib/Test/Simple/t/lib/MyOverload.pm    Test::More test module 
+lib/Test/Simple/t/lib/MyOverload.pm    Test::More test module
+lib/Test/Simple/t/lib/NoExporter.pm    Test::Simple test module
 lib/Test/Simple/t/maybe_regex.t        Test::Builder->maybe_regex() tests
 lib/Test/Simple/t/missing.t    Test::Simple test, missing tests
 lib/Test/Simple/t/More.t       Test::More test, basic stuff
@@ -3619,7 +3620,6 @@ t/lib/Math/BigInt/Subclass.pm     Empty subclass of BigInt for test
 t/lib/Math/BigRat/Test.pm              Math::BigRat test helper
 t/lib/mypragma.pm              An example user pragma
 t/lib/mypragma.t               Test the example user pragma
-t/lib/NoExporter.pm                    Part of Test-Simple
 t/lib/NoFork.pm                        Module for testing Test::Harness
 t/lib/no_load.t                        Test that some modules don't load others
 t/lib/proxy_constant_subs.t    Test that Proxy Constant Subs behave correctly
index d0c145f..b618acc 100644 (file)
@@ -3,7 +3,7 @@
 BEGIN {
     if( $ENV{PERL_CORE} ) {
         chdir 't';
-        @INC = ('../lib', 'lib');
+        @INC = qw(../lib ../lib/Test/Simple/t/lib);
     }
     else {
         unshift @INC, 't/lib';