X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FSub-Prototype-Util.git;a=blobdiff_plain;f=t%2F12-recall.t;h=269cd1df49be40ca8a0047f7bc7905e62664bd8b;hp=8420cebd93f2be5289d4bceb7d7be901b9abe502;hb=c07669825652fcdc1f50ddc814a127e1e413fd45;hpb=cf14ceaf1754a03f46cce6e45fe82f1a215d7c0c diff --git a/t/12-recall.t b/t/12-recall.t index 8420ceb..269cd1d 100644 --- a/t/12-recall.t +++ b/t/12-recall.t @@ -8,22 +8,29 @@ use Test::More tests => 8 + 20 + (($^V ge v5.10.0) ? 4 : 0); use Scalar::Util qw/set_prototype/; use Sub::Prototype::Util qw/recall/; +sub exception { + my ($msg) = @_; + $msg =~ s/\s+/\\s+/g; + return qr/^$msg.*?at\s+\Q$0\E\s+line\s+\d+/; +} + eval { recall undef }; -like($@, qr/^No\s+subroutine/, 'recall undef croaks'); +like $@, exception('No subroutine'), 'recall undef croaks'; eval { recall '' }; -like($@, qr/^No\s+subroutine/, 'recall "" croaks'); +like $@, exception('No subroutine'), 'recall "" croaks'; eval { recall \1 }; -like($@, qr/^Unhandled\s+SCALAR/, 'recall scalarref croaks'); +like $@, exception('Unhandled SCALAR'), 'recall scalarref croaks'; eval { recall [ ] }; -like($@, qr/^Unhandled\s+ARRAY/, 'recall arrayref croaks'); +like $@, exception('Unhandled ARRAY'), 'recall arrayref croaks'; eval { recall sub { } }; -like($@, qr/^Unhandled\s+CODE/, 'recall coderef croaks'); +like $@, exception('Unhandled CODE'), 'recall coderef croaks'; eval { recall { '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 { recall 'hlagh' }; -like($@, qr/^Undefined\s+subroutine/, 'recall croaks'); +like $@, qr/^Undefined\s+subroutine/, 'recall croaks'; eval { recall 'for' }; -like($@, qr/^syntax\s+error\s+at\s+\Q$0\E/, 'invalid eval code croaks'); +like $@, exception('syntax error'), 'invalid eval code croaks'; sub noproto { $_[1], $_[0] } sub mytrunc ($;$) { $_[1], $_[0] }