1caed0bffae0daba3e9afff73e7a4123981006e4
[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();
11 isa_ok ($object, 'SDL::Rect');
12
13