X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F10-simple.t;h=1692b44a8616f35ae9064a6670207588ad4145b8;hb=9ed6790ce779d2ca91e392ceeb016d555658d8c0;hp=adcbf34655015c895ac7f2f9ce3d25b5781585e9;hpb=a86e3e47a167afadf7de1231d6401a1139330ad0;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/t/10-simple.t b/t/10-simple.t index adcbf34..1692b44 100644 --- a/t/10-simple.t +++ b/t/10-simple.t @@ -3,74 +3,60 @@ use strict; use warnings; -use Test::More tests => 46; +use Test::More tests => 43; -use Variable::Magic qw/wizard gensig getsig cast dispell MGf_COPY MGf_DUP MGf_LOCAL VMG_UVAR/; +use Variable::Magic qw; -my $args = 7; -++$args if MGf_COPY; -++$args if MGf_DUP; +my $inv_wiz_obj = qr/Invalid\s+wizard\s+object\s+at\s+\Q$0\E/; + +my $args = 9; ++$args if MGf_LOCAL; -$args += 4 if VMG_UVAR; +$args += 5 if VMG_UVAR; for (0 .. 20) { next if $_ == $args; eval { Variable::Magic::_wizard(('hlagh') x $_) }; - ok($@, "_wizard called directly with a wrong number of arguments croaks ($@)"); + like($@, qr/Wrong\s+number\s+of\s+arguments\s+at\s+\Q$0\E/, '_wizard called directly with a wrong number of arguments croaks'); } for (0 .. 3) { eval { wizard(('dong') x (2 * $_ + 1)) }; - ok($@, "wizard called with an odd number of arguments croaks ($@)"); + like($@, qr/Wrong\s+number\s+of\s+arguments\s+for\s+&?wizard\(\)\s+at\s+\Q$0\E/, 'wizard called with an odd number of arguments croaks'); } -my $sig = gensig; - -my $wiz = eval { wizard sig => $sig }; -ok(!$@, "wizard doesn't croak ($@)"); +my $wiz = eval { wizard }; +is($@, '', 'wizard doesn\'t croak'); ok(defined $wiz, 'wizard is defined'); is(ref $wiz, 'SCALAR', 'wizard is a scalar ref'); -is($sig, getsig $wiz, 'wizard signature is correct'); -my $a = 1; my $res = eval { cast $a, $wiz }; -ok(!$@, "cast doesn't croak ($@)"); -ok($res, 'cast is valid'); +is($@, '', 'cast doesn\'t croak'); +ok($res, 'cast is valid'); $res = eval { dispell $a, $wiz }; -ok(!$@, "dispell from wizard doesn't croak ($@)"); -ok($res, 'dispell from wizard is valid'); +is($@, '', 'dispell from wizard doesn\'t croak'); +ok($res, 'dispell from wizard is valid'); $res = eval { cast $a, $wiz }; -ok(!$@, "re-cast doesn't croak ($@)"); -ok($res, 're-cast is valid'); +is($@, '', 're-cast doesn\'t croak'); +ok($res, 're-cast is valid'); -$res = eval { dispell $a, gensig }; -ok(!$@, "re-dispell from wrong sig doesn't croak ($@)"); -ok(!defined($res), 're-dispell from wrong sig returns undef'); +$res = eval { dispell $a, \"blargh" }; +like($@, $inv_wiz_obj, 're-dispell from wrong wizard croaks'); +is($res, undef, 're-dispell from wrong wizard doesn\'t return anything'); $res = eval { dispell $a, undef }; -ok($@, "re-dispell from undef croaks ($@)"); -ok(!defined($res), 're-dispell from undef returns undef'); +like($@, $inv_wiz_obj, 're-dispell from undef croaks'); +is($res, undef, 're-dispell from undef doesn\'t return anything'); -$res = eval { dispell $a, $sig }; -ok(!$@, "re-dispell from good sig doesn't croak ($@)"); -ok($res, 're-dispell from good sig is valid'); +$res = eval { dispell $a, $wiz }; +is($@, '', 're-dispell from good wizard doesn\'t croak'); +ok($res, 're-dispell from good wizard is valid'); $res = eval { dispell my $b, $wiz }; -ok(!$@, "dispell non-magic object doesn't croak ($@)"); +is($@, '', 'dispell non-magic object doesn\'t croak'); is($res, 0, 'dispell non-magic object returns 0'); -$sig = gensig; -{ - my $wiz = wizard sig => $sig; - my $b = 2; - my $res = cast $b, $wiz; -} my $c = 3; -$res = eval { cast $c, $sig }; -ok(!$@, "cast from obsolete signature doesn't croak ($@)"); -ok(!defined($res), 'cast from obsolete signature returns undef'); - $res = eval { cast $c, undef }; -ok($@, "cast from undef croaks ($@)"); -ok(!defined($res), 'cast from undef returns undef'); +like($@, $inv_wiz_obj, 'cast from undef croaks'); +is($res, undef, 'cast from undef doesn\'t return anything');