From: Rafael Garcia-Suarez Date: Tue, 15 Apr 2008 15:04:29 +0000 (+0000) Subject: Move the NoExporter test module under Test::Simple X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dfa82ec08f53b0abdac8664d46a8aec1f3cfc21c;p=p5sagit%2Fp5-mst-13.2.git Move the NoExporter test module under Test::Simple (part of a plan to have modules self contained, and removing test modules from t/lib) p4raw-id: //depot/perl@33692 --- diff --git a/MANIFEST b/MANIFEST index 9ddf38c..205d399 100644 --- 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 diff --git a/t/lib/NoExporter.pm b/lib/Test/Simple/t/lib/NoExporter.pm similarity index 100% rename from t/lib/NoExporter.pm rename to lib/Test/Simple/t/lib/NoExporter.pm diff --git a/lib/Test/Simple/t/use_ok.t b/lib/Test/Simple/t/use_ok.t index d0c145f..b618acc 100644 --- a/lib/Test/Simple/t/use_ok.t +++ b/lib/Test/Simple/t/use_ok.t @@ -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';