ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Guard/t/02_guard.t
(Generate patch)

Comparing Guard/t/02_guard.t (file contents):
Revision 1.1 by root, Sat Dec 13 17:37:22 2008 UTC vs.
Revision 1.2 by root, Sat Dec 13 19:14:58 2008 UTC

12print "ok 4\n"; 12print "ok 4\n";
13 13
14{ 14{
15 my $guard = guard { print "not ok 6\n" }; 15 my $guard = guard { print "not ok 6\n" };
16 print "ok 5\n"; 16 print "ok 5\n";
17 Guard::cancel $guard; 17 $guard->cancel;
18} 18}
19 19
20print "ok 6\n"; 20print "ok 6\n";
21 21
22{ 22{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines