File: 02_new.t

package info (click to toggle)
libio-socket-socks-perl 0.65-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 288 kB
  • ctags: 71
  • sloc: perl: 2,894; makefile: 14
file content (8 lines) | stat: -rw-r--r-- 174 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
use Test::More tests=>3;

BEGIN{ use_ok( "IO::Socket::Socks" ); }

my $socks = new IO::Socket::Socks();
ok( defined($socks), "new()");
isa_ok( $socks, "IO::Socket::Socks");