The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# Test to make sure object can be instantiated for udp protocol.
# I do not know of any servers that support udp echo anymore.

BEGIN {
  unless (eval "require Socket") {
    print "1..0 \# Skip: no Socket\n";
    exit;
  }
  unless (getservbyname('echo', 'udp')) {
    print "1..0 \# Skip: no echo port\n";
    exit;
  }
}

use Test;
use Net::Ping;
plan tests => 2;

# Everything loaded fine
ok 1;

my $p = new Net::Ping "udp";
ok !!$p;