X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F01-import.t;h=35c8d5ca6469819d8004e886f9ce8f59a88ccf21;hb=dee850ba2915663035bfd2b27b2d412e370f4a26;hp=3b42068d7fb9cb90ba3775bc76015583df607ed0;hpb=465440ff9c9519d5ce33d582cbf3fa4d03b4358a;p=perl%2Fmodules%2FTest-Leaner.git diff --git a/t/01-import.t b/t/01-import.t index 3b42068..35c8d5c 100644 --- a/t/01-import.t +++ b/t/01-import.t @@ -5,7 +5,10 @@ use warnings; use Test::More (); -BEGIN { *tm_is = \&Test::More::is } +BEGIN { + delete $ENV{PERL_TEST_LEANER_USES_TEST_MORE}; + *tm_is = \&Test::More::is; +} Test::More::plan(tests => 2 * 15); @@ -29,8 +32,15 @@ my @syms = qw< BAIL_OUT >; +unless ($Test::More::VERSION > 0.51) { + delete $main::{$_} for @syms; +} + for (@syms) { eval { Test::Leaner->import(import => [ $_ ]) }; - tm_is $@, '', "import $_"; - tm_is prototype($_), prototype("Test::More::$_"), "prototype $_"; + tm_is $@, '', "import $_"; + my $proto = ($_ eq 'unlike' and $Test::More::VERSION < 0.4802) + ? '$$;$' + : prototype("Test::More::$_"); + tm_is prototype($_), $proto, "prototype $_"; }