File: 001_load.t

package info (click to toggle)
libnet-sieve-script-perl 0.07-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 256 kB
  • ctags: 146
  • sloc: perl: 2,087; makefile: 41
file content (13 lines) | stat: -rw-r--r-- 269 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
# -*- perl -*-

# t/001_load.t - check module loading and create testing directory

use Test::More tests => 2;
use lib qw(lib);

BEGIN { use_ok( 'Net::Sieve::Script' ); }

my $object = Net::Sieve::Script->new (name => "test");
isa_ok ($object, 'Net::Sieve::Script');