Added bugfix branch
[p5sagit/Excel-Template.git] / t / 001_load.t
CommitLineData
b6bc5a5d 1use strict;
d0eafc11 2
3use Test::More tests => 2;
4
b6bc5a5d 5my $CLASS = 'Excel::Template';
6
7use_ok( $CLASS );
d0eafc11 8
b6bc5a5d 9my $object = $CLASS->new ();
10isa_ok( $object, $CLASS );
d0eafc11 11
12