ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/t/65_event_05_dns.t
Revision: 1.4
Committed: Wed Dec 29 04:23:06 2010 UTC (13 years, 5 months ago) by root
Content type: application/x-troff
Branch: MAIN
CVS Tags: rel-5_3, rel-5_31
Changes since 1.3: +1 -0 lines
Log Message:
update tests

File Contents

# User Rev Content
1 root 1.1 # we avoid complicated tests here because some systems will
2     # not have working DNS
3    
4 root 1.4 use AnyEvent;
5 root 1.3 BEGIN { eval q{use AnyEvent::Impl::Event;1} or ((print qq{1..0 # SKIP AnyEvent::Impl::Event not loadable}), exit 0) }
6 root 1.1 use AnyEvent::DNS;
7    
8 root 1.2 $| = 1; print "1..5\n";
9    
10 root 1.1 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