X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F17-ctl.t;h=92a4c0cc7930d5a9d3dc8a7c1e74185d464bc747;hb=3bc98bdbdb230943e7fb3135e325f10013acac2d;hp=38924d6f89f8e9505261e3aa80f948f9776ee83f;hpb=159e8ad7c747edb4a25db2f2673bbe143531f347;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/t/17-ctl.t b/t/17-ctl.t index 38924d6..92a4c0c 100644 --- a/t/17-ctl.t +++ b/t/17-ctl.t @@ -5,7 +5,7 @@ use warnings; use Test::More tests => 4 * 8 + 10 + 1 + 1; -use Variable::Magic qw/wizard cast VMG_UVAR/; +use Variable::Magic qw; sub expect { my ($name, $where, $suffix) = @_; @@ -247,7 +247,7 @@ SKIP: skip 'No working Capture::Tiny is installed'=> $count unless $has_capture_tiny; my $output = Capture::Tiny::capture_merged(sub { run_perl <<' CODE' }); -use Variable::Magic qw/wizard cast/; { BEGIN { $^H |= 0x020000; cast %^H, wizard free => sub { die q[cucumber] } } } +use Variable::Magic qw; { BEGIN { $^H |= 0x020000; cast %^H, wizard free => sub { die q[cucumber] } } } CODE skip 'Test code didn\'t run properly' => $count unless defined $output; like $output, expect('cucumber', '-e', "\nExecution(?s:.*)"), @@ -265,7 +265,7 @@ SKIP: skip 'No working Capture::Tiny is installed'=> $count unless $has_capture_tiny; my $output = Capture::Tiny::capture_merged(sub { run_perl <<' CODE' }); -use Variable::Magic qw/wizard cast/; BEGIN { cast %::, wizard fetch => sub { die q[salsify] } } hlagh() +use Variable::Magic qw; BEGIN { cast %::, wizard fetch => sub { die q[salsify] } } hlagh() CODE skip 'Test code didn\'t run properly' => $count unless defined $output; my $suffix = "\nExecution(?s:.*)";