X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=blobdiff_plain;f=t%2F50-external.t;h=d34db9cf5a980ae7a095f489c1f336abb357320f;hp=60ed24469d13ef24921596254bdee9fe8ce3cc28;hb=b88a054e2ca91c186a420e015b3a383b406ff2d0;hpb=bde376117bfa1b3cc6b40bfe28e19ef120ba3ae0 diff --git a/t/50-external.t b/t/50-external.t index 60ed244..d34db9c 100644 --- a/t/50-external.t +++ b/t/50-external.t @@ -5,7 +5,7 @@ use warnings; use Config; -use Test::More tests => 7; +use Test::More tests => 8; use lib 't/lib'; use VPIT::TestHelpers 'run_perl'; @@ -77,3 +77,9 @@ SKIP: { } is $status, 0, 'RT #115392'; } + +SKIP: { + my $status = run_perl_file 't/testcases/babycart_in_heredoc.pl'; + skip RUN_PERL_FAILED() => 1 unless defined $status; + is $status, 0, 'babycart in heredoc'; +}