File: 00load.t

package info (click to toggle)
libical-parser-perl 1.21-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 620 kB
  • sloc: perl: 299; 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');