1# -*- perl -*-
2
3# t/001_load.t - check module loading and create testing directory
4
5use Test::More tests => 2;
6
7BEGIN { use_ok( 'GD::Graph::histogram' ); }
8
9my $object = GD::Graph::histogram->new ();
10isa_ok ($object, 'GD::Graph::histogram');
11
12
13