]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
Test string callbacks
authorVincent Pit <vince@profvince.com>
Mon, 30 Nov 2009 20:57:24 +0000 (21:57 +0100)
committerVincent Pit <vince@profvince.com>
Mon, 30 Nov 2009 20:57:24 +0000 (21:57 +0100)
t/14-callbacks.t

index eb72559acbf75e4afe8e9688b01aa1662a2c7d00..c599b2fe7dc69bf6c027408e4f488e598e7eeb12 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 12;
+use Test::More tests => 17;
 
 use Variable::Magic qw/wizard cast/;
 
@@ -27,6 +27,24 @@ eval {
 is($@, '', 'callback returning undef doesn\'t warn/croak');
 is($x, $n, 'callback returning undef fails');
 
+{
+ my $c = 0;
+ sub X::wat { ++$c }
+ my $wiz = eval { wizard get => \'X::wat' };
+ is($@, '', 'wizard with a string callback doesn\'t croak');
+ my $b = $n;
+ my $res = eval { cast $b, $wiz };
+ is($@, '', 'cast a wizard with a string callback doesn\'t croak');
+ my $x;
+ eval {
+  local $SIG{__WARN__} = sub { die };
+  $x = $b;
+ };
+ is($@, '', 'string callback doesn\'t warn/croak');
+ is($c, 1,  'string callback is called');
+ is($x, $n, 'string callback returns the right thing');
+}
+
 my @callers;
 $wiz = wizard get => sub {
  my @c;