File: 01_minimal.t

package info (click to toggle)
libnet-irc-perl 0.75-8
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze, wheezy
  • size: 264 kB
  • ctags: 165
  • sloc: perl: 2,290; makefile: 38
file content (12 lines) | stat: -rw-r--r-- 141 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
use strict;
use Test;

BEGIN { plan tests => 3 };

ok(eval { require Net::IRC; });

use Net::IRC;
ok(1);

my $irc = Net::IRC->new;
ok($irc);