ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/t/01_basic.t
Revision: 1.2
Committed: Fri Nov 16 05:08:18 2007 UTC (16 years, 6 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-2_8, rel-2_9, rel-2_7, rel-3_0, rel-3_1, rel-3_12, rel-3_11
Changes since 1.1: +1 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 $|=1;
2 BEGIN { print "1..6\n" }
3
4 use AnyEvent;
5 use AnyEvent::Impl::Perl;
6
7 print "ok 1\n";
8
9 my $cv = AnyEvent->condvar;
10
11 print "ok 2\n";
12
13 my $timer1 = AnyEvent->timer (after => 0.1, cb => sub { print "ok 5\n"; $cv->broadcast });
14
15 print "ok 3\n";
16
17 AnyEvent->timer (after => 0.05, cb => sub { print "not ok 5\n" });
18
19 print "ok 4\n";
20
21 $cv->wait;
22
23 print "ok 6\n";
24