X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fimport_into.t;h=7566438ea407fb3d9a912a3773cc69051a74cc34;hb=5078f1f909937a82a7b771e77b175bc84111f421;hp=6bb30add4059cf4c5bbc458630073b2e342fb181;hpb=e5f9555dcd1499015a2ab8fa2623fca86d526405;p=p5sagit%2FImport-Into.git diff --git a/t/import_into.t b/t/import_into.t index 6bb30ad..7566438 100644 --- a/t/import_into.t +++ b/t/import_into.t @@ -3,66 +3,125 @@ use warnings FATAL => 'all'; use Test::More qw(no_plan); BEGIN { - package MyExporter; + $INC{"MyExporter.pm"} = __FILE__; use base qw(Exporter); our @EXPORT_OK = qw(thing); sub thing { 'thing' } +} - package MultiExporter; - - use Import::Into; +my @importcaller; +my $version; +BEGIN { + package CheckFile; + $INC{"CheckFile.pm"} = __FILE__; sub import { - my $target = caller; - warnings->import::into($target); - MyExporter->import::into($target, 'thing'); - CheckFile->import::into(1); + @importcaller = caller; + } + sub VERSION { + $version = $_[1]; } - - $INC{"MultiExporter.pm"} = 1; } -my @checkcaller; BEGIN { + package MultiExporter; + $INC{"MultiExporter.pm"} = __FILE__; - package CheckFile; + use Import::Into; sub import { - @checkcaller = caller; + my $target = caller; + warnings->import::into($target); + MyExporter->import::into($target, 'thing'); + CheckFile->import::into(1); } - - $INC{"CheckFile.pm"} = 1; } -BEGIN { - +eval q{ package TestPackage; - no warnings; + no warnings FATAL => 'all'; -#line 1 +#line 1 "import_into_inline.pl" use MultiExporter; sub test { thing . undef } -} + 1; +} or die $@; my @w; is(do { local $SIG{__WARN__} = sub { push @w, @_; }; - TestPackage::test; + TestPackage::test(); }, 'thing', 'returned thing ok'); is(scalar @w, 1, 'Only one entry in @w'); like($w[0], qr/uninitialized/, 'Correct warning'); -is $checkcaller[0], 'TestPackage', 'import by level has correct package'; -is $checkcaller[1], __FILE__, 'import by level has correct file'; -is $checkcaller[2], 1, 'import by level has correct line'; +is $importcaller[0], 'TestPackage', + 'import by level has correct package'; +is $importcaller[1], 'import_into_inline.pl', + 'import by level has correct file'; +is $importcaller[2], 1, + 'import by level has correct line'; + +@importcaller = (); +$version = undef; +CheckFile->import::into({ + package => 'ExplicitPackage', + filename => 'explicit-file.pl', + line => 42, + version => 219, +}); + +is $importcaller[0], 'ExplicitPackage', + 'import with hash has correct package'; +is $importcaller[1], 'explicit-file.pl', + 'import with hash has correct file'; +is $importcaller[2], 42, + 'import with hash has correct line'; +is $version, 219, + 'import with hash has correct version'; + +BEGIN { + package LevelExporter; + $INC{'LevelExporter.pm'} = __FILE__; + + sub import { + CheckFile->import::into({ + level => 1, + version => 219, + }); + } +} + +@importcaller = (); +$version = undef; +eval q{ + package ExplicitLevel; + +#line 42 "explicit-level.pl" + use LevelExporter; + 1; +} or die $@; + +is $importcaller[0], 'ExplicitLevel', + 'import with level in hash has correct package'; +is $importcaller[1], 'explicit-level.pl', + 'import with level in hash has correct file'; +is $importcaller[2], 42, + 'import with level in hash has correct line'; +is $version, 219, + 'import with level in hash has correct version'; + +ok( !IPC::Open3->can("open3"), "IPC::Open3 is unloaded" ); +IPC::Open3->import::into("TestPackage"); +ok( TestPackage->can("open3"), "IPC::Open3 was use'd and import::into'd" );