X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=t%2F50-external.t;h=52ff1b84ffafde55001dfdbda4a25950300e59a7;hp=5d3d37564b0e20987e51a429e9ab1d985c495c68;hb=47795ecd50880244edb1da0a9253bf228d9e9293;hpb=eab9532b534e1c2efca5410ae4502af7ce43f941 diff --git a/t/50-external.t b/t/50-external.t index 5d3d375..52ff1b8 100644 --- a/t/50-external.t +++ b/t/50-external.t @@ -3,7 +3,10 @@ use strict; use warnings; -use Test::More tests => 2; +use Test::More tests => 3; + +use lib 't/lib'; +use VPIT::TestHelpers; BEGIN { delete $ENV{PERL_INDIRECT_PM_DISABLE} } @@ -29,3 +32,10 @@ SKIP: my $status = run_perl 'no indirect hook => sub { exit 2 }; new X'; is $status, 2 << 8, 'no semicolon at the end of -e'; } + +SKIP: +{ + load_or_skip('Devel::CallParser', undef, undef, 1); + my $status = run_perl "use Devel::CallParser (); no indirect; sub ok { } ok 1"; + is $status, 0, 'indirect is not getting upset by Devel::CallParser'; +}