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