ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/t/01_basic.t
(Generate patch)

Comparing AnyEvent/t/01_basic.t (file contents):
Revision 1.3 by root, Wed Apr 23 11:25:42 2008 UTC vs.
Revision 1.4 by root, Thu Apr 24 02:23:55 2008 UTC

12 12
13my $timer1 = AnyEvent->timer (after => 0.1, cb => sub { print "ok 5\n"; $cv->broadcast }); 13my $timer1 = AnyEvent->timer (after => 0.1, cb => sub { print "ok 5\n"; $cv->broadcast });
14 14
15print "ok 3\n"; 15print "ok 3\n";
16 16
17AnyEvent->timer (after => 1, cb => sub { print "not ok 5\n" }); 17AnyEvent->timer (after => 0.01, cb => sub { print "not ok 5\n" });
18 18
19print "ok 4\n"; 19print "ok 4\n";
20 20
21$cv->wait; 21$cv->wait;
22 22

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines