f66237332f8f963bd46177f16107ed78202ce5ef
[sdlgit/SDL_perl.git] / exp / SDL / Rect / t / 001_load.t
1 # -*- perl -*-
2
3 # t/001_load.t - check module loading and create testing directory
4 no AutoLoader;
5
6 use Test::More tests => 2;
7
8 BEGIN { use_ok( 'SDL::Rect' ); }
9
10 my $object = SDL::Rect->new(0,0,0,0);
11 isa_ok ($object, 'SDL::Rect');
12
13