82dee7de92a0bd35 failed to add ext/lib/Makefile.PL. Oops.
[p5sagit/p5-mst-13.2.git] / ext / Net-Ping / t / 120_udp_inst.t
CommitLineData
505f3f16 1# Test to make sure object can be instantiated for udp protocol.
2# I do not know of any servers that support udp echo anymore.
3
a2a978ac 4BEGIN {
49afa5f6 5 unless (eval "require Socket") {
6 print "1..0 \# Skip: no Socket\n";
7 exit;
8 }
ddbbf559 9 unless (getservbyname('echo', 'udp')) {
10 print "1..0 \# Skip: no echo port\n";
11 exit;
12 }
a2a978ac 13}
14
505f3f16 15use Test;
16use Net::Ping;
17plan tests => 2;
18
19# Everything loaded fine
20ok 1;
21
22my $p = new Net::Ping "udp";
23ok !!$p;