File: 001_load.t

package info (click to toggle)
libdatetime-format-strptime-perl 1.0700-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 164 kB
  • ctags: 19
  • sloc: perl: 891; makefile: 45
file content (12 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (2)
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( 'DateTime::Format::Strptime' ); }

my $object = DateTime::Format::Strptime->new( pattern => '%T' );
isa_ok ($object, 'DateTime::Format::Strptime');