File: 00load.t

package info (click to toggle)
libical-parser-perl 1.20-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 596 kB
  • ctags: 24
  • sloc: perl: 298; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
# -*- perl -*-

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

use Test::More tests => 2;

BEGIN { use_ok( 'iCal::Parser' ); }

my $object = iCal::Parser->new ();
isa_ok ($object, 'iCal::Parser');