First commit of SDL_Perl-2.1.3
[sdlgit/SDL_perl.git] / t / soundpm.t
1 #!/usr/bin/perl -w
2 #
3 # Copyright (C) 2003 Tels
4 # Copyright (C) 2004 David J. Goehrig
5 #
6 # basic testing of SDL::Sound
7
8 BEGIN {
9         unshift @INC, 'blib/lib','blib/arch';
10 }
11
12 use strict;
13 use SDL::Config;
14
15 use Test::More;
16
17 plan ( tests => 2 );
18
19 use_ok( 'SDL::Sound' ); 
20
21 can_ok ('SDL::Sound', qw/
22         new 
23         volume
24         /);
25