]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blobdiff - t/22-len.t
Importing Variable-Magic-0.13.tar.gz
[perl/modules/Variable-Magic.git] / t / 22-len.t
index c3a95663e0af476f698d59bf278e6ccfafb1f307..0a6dd59650611bbfc276beca4691c26d93bd54b8 100644 (file)
@@ -10,18 +10,18 @@ use Variable::Magic qw/wizard cast/;
 my $c = 0;
 my $n = int rand 1000;
 my $wiz = wizard len => sub { ++$c; return $n };
-ok($c == 0, 'len : create wizard');
+is($c, 0, 'len : create wizard');
 
 my @a = qw/a b c/;
 
 cast @a, $wiz;
-ok($c == 0, 'len : cast');
+is($c, 0, 'len : cast');
 
 my $b = scalar @a;
-ok($c == 1, 'len : get length');
-ok($b == $n, 'len : get length correctly');
+is($c, 1,  'len : get length');
+is($b, $n, 'len : get length correctly');
 
 $n = 0;
 $b = scalar @a;
-ok($c == 2, 'len : get length 0');
-ok($b == 0, 'len : get length 0 correctly');
+is($c, 2, 'len : get length 0');
+is($b, 0, 'len : get length 0 correctly');