Bot-BasicBot
view release on metacpan or search on metacpan
t/connect.t view on Meta::CPAN
use strict;
use Test::More;
plan skip_all => 'This test should use POE::Component::Server::IRC';
use lib qw(lib t/lib);
require IO::Socket;
my $s = IO::Socket::INET->new(
PeerAddr => "irc.perl.org:80",
Timeout => 10,
);
if ($s) {
close($s);
plan tests => 4;
} else {
plan skip_all => "no net connection available";
exit;
}
( run in 0.234 second using v1.01-cache-2.11-cpan-4d50c553e7e )