ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/t/68_poe_05_dns.t
Revision: 1.3
Committed: Thu Jul 9 22:49:18 2009 UTC (14 years, 11 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-4_82, rel-4_83
Changes since 1.2: +1 -2 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 $|=1;
2 BEGIN { print "1..5\n" }
3
4 # we avoid complicated tests here because some systems will
5 # not have working DNS
6
7 use AnyEvent::Impl::POE; $^W = 0;
8 use AnyEvent::DNS;
9
10 print "ok 1\n";
11
12 AnyEvent::DNS::resolver;
13
14 print "ok 2\n";
15
16 # make sure we timeout faster
17 AnyEvent::DNS::resolver->{timeout} = [0.5];
18 AnyEvent::DNS::resolver->_compile;
19
20 print "ok 3\n";
21
22 my $cv = AnyEvent->condvar;
23
24 AnyEvent::DNS::a "www.google.de", sub {
25 print "ok 4 # www.google.de => @_\n";
26 $cv->send;
27 };
28
29 $cv->recv;
30
31 print "ok 5\n";
32