X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F11-wrap.t;h=c03654a133794f27f5659ab224159fbebf65172e;hb=dc8381d3afc8122719bdacce75ee5c2d25c27d1d;hp=47fd20ecbc587f536cf2fb8e17b5dbac7b2b0dac;hpb=4e977a0b1db65e44cf4c6184792208a7930c34f4;p=perl%2Fmodules%2FSub-Prototype-Util.git diff --git a/t/11-wrap.t b/t/11-wrap.t index 47fd20e..c03654a 100644 --- a/t/11-wrap.t +++ b/t/11-wrap.t @@ -8,20 +8,28 @@ use Test::More tests => 7 + 6 + 3 + 1 + 6 + 1 + (($^V ge v5.10.0) ? 2 : 0) + 1; use Scalar::Util qw/set_prototype/; use Sub::Prototype::Util qw/wrap/; +sub exception { + my ($msg) = @_; + $msg =~ s/\s+/\\s+/g; + return qr/^$msg.*?at\s+\Q$0\E\s+line\s+\d+/; +} + eval { wrap undef }; -like($@, qr/^No\s+subroutine/, 'recall undef croaks'); +like $@, exception('No subroutine'), 'recall undef croaks'; eval { wrap '' }; -like($@, qr/^No\s+subroutine/, 'recall "" croaks'); +like $@, exception('No subroutine'), 'recall "" croaks'; eval { wrap \1 }; -like($@, qr/^Unhandled\s+SCALAR/, 'recall scalarref croaks'); +like $@, exception('Unhandled SCALAR'), 'recall scalarref croaks'; eval { wrap [ ] }; -like($@, qr/^Unhandled\s+ARRAY/, 'recall arrayref croaks'); +like $@, exception('Unhandled ARRAY'), 'recall arrayref croaks'; eval { wrap sub { } }; -like($@, qr/^Unhandled\s+CODE/, 'recall coderef croaks'); +like $@, exception('Unhandled CODE'), 'recall coderef croaks'; eval { wrap { 'foo' => undef, 'bar' => undef } }; -like($@, qr!exactly\s+one\s+key/value\s+pair!, 'recall hashref with 2 pairs croaks'); +like $@, qr!exactly\s+one\s+key/value\s+pair!, + 'recall hashref with 2 pairs croaks'; eval { wrap 'hlagh', qw/a b c/ }; -like($@, qr/^Optional\s+arguments/, 'recall takes options in a key => value list'); +like $@, exception('Optional arguments'), + 'recall takes options in a key => value list'; my $push_exp = '{ CORE::push(@{$_[0]}, @_[1..$#_]) }'; my $push = wrap 'CORE::push', compile => 0; @@ -48,7 +56,7 @@ sub cb (\[$@]\[%&]&&); my $cb = wrap 'main::cb', sub => 0, wrong_ref => 'die'; my $x = ', sub{&{$c[0]}}, sub{&{$c[1]}}) '; is($cb, - join('', q!{ my @c; push @c, $_[2]; push @c, $_[3]; !, + join('', q!{ my @c = @_[2, 3]; !, q!my $r = ref($_[0]); !, q!if ($r eq 'SCALAR') { !, q!my $r = ref($_[1]); !, @@ -132,4 +140,6 @@ if ($^V ge v5.10.0) { } eval { wrap { 'main::dummy' => '\[@%]' }, ref => 'shift' }; -like($@, qr/to\s+shift\s+must\s+be\s+array/, 'invalid eval code croaks'); +like $@, + qr/to\s+shift\s+must\s+be\s+array +\([\w ]+\) +at\s+\Q$0\E\s+line\s+\d+/, + 'invalid eval code croaks';