X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F85-stress-unwind.t;h=fa52bcd07b34eb83e22d7cf6505610298a5dda76;hb=7505ee1e658a27b68ebe24c52c1db86694251bb4;hp=c4712e55026059effd61cd0897b1e62f5981a0dc;hpb=0a6221d3f467b5f819e3c119b4cda0218399cb51;p=perl%2Fmodules%2FScope-Upper.git diff --git a/t/85-stress-unwind.t b/t/85-stress-unwind.t index c4712e5..fa52bcd 100644 --- a/t/85-stress-unwind.t +++ b/t/85-stress-unwind.t @@ -3,9 +3,10 @@ use strict; use warnings; -use Test::More 'no_plan'; +use lib 't/lib'; +use Test::Leaner 'no_plan'; -use Scope::Upper qw/unwind UP HERE/; +use Scope::Upper qw; our ($call, @args, $args); @@ -87,7 +88,7 @@ DIAG } } -for ([ ], [ 'A' ], [ qw/B C/ ]) { +for ([ ], [ 'A' ], [ qw ]) { @args = @$_; $args = '(' . join(', ', map "'$_'", @args) . ')'; runtests 0, 0;