From: Vincent Pit Date: Tue, 3 Mar 2009 00:47:05 +0000 (+0100) Subject: Factor the regexp in t/12-sig.t X-Git-Tag: v0.33~15 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=commitdiff_plain;h=eb15f22f761b72aa1a6fc282ffcaf4326a3ae08d Factor the regexp in t/12-sig.t --- diff --git a/t/12-sig.t b/t/12-sig.t index 7f8ff2c..0575584 100644 --- a/t/12-sig.t +++ b/t/12-sig.t @@ -11,6 +11,8 @@ my $sig = 300; my ($a, $b, $c, $d) = 1 .. 4; +my $inv_num_sig = qr/Invalid\s+numeric\s+signature\s+at\s+\Q$0\E/; + { my $wiz = eval { wizard sig => $sig }; is($@, '', 'wizard creation doesn\'t croak'); @@ -25,16 +27,16 @@ my ($a, $b, $c, $d) = 1 .. 4; is($sig, getsig $wiz2, 'retrieved wizard signature is correct'); my $wiz3 = eval { wizard sig => [ ] }; - like($@, qr/Invalid\s+numeric\s+signature\s+at\s+\Q$0\E/, 'non numeric signature croaks'); - is($wiz3, undef, 'non numeric signature doesn\'t return anything'); + like($@, $inv_num_sig, 'non numeric signature croaks'); + is($wiz3, undef, 'non numeric signature doesn\'t return anything'); $wiz3 = eval { wizard sig => SIG_MIN - 1 }; - like($@, qr/Invalid\s+numeric\s+signature\s+at\s+\Q$0\E/, 'numeric signature too small croaks'); - is($wiz3, undef, 'numeric signature too small doesn\'t return anything'); + like($@, $inv_num_sig, 'numeric signature too small croaks'); + is($wiz3, undef, 'numeric signature too small doesn\'t return anything'); $wiz3 = eval { wizard sig => SIG_MAX + 1 }; - like($@, qr/Invalid\s+numeric\s+signature\s+at\s+\Q$0\E/, 'numeric signature too big croaks'); - is($wiz3, undef, 'numeric signature too big doesn\'t return anything'); + like($@, $inv_num_sig, 'numeric signature too big croaks'); + is($wiz3, undef, 'numeric signature too big doesn\'t return anything'); my $a = 1; my $res = eval { cast $a, $wiz };