constants testing
[sdlgit/SDL_perl.git] / t / cdrompm.t
1 #!/usr/bin/perl -w
2 #
3 # Copyright (C) 2003 Tels
4 # Copyright (C) 2004 David J. Goehrig
5 #
6 # ------------------------------------------------------------------------------
7 #
8 # This library is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU Lesser General Public
10 # License as published by the Free Software Foundation; either
11 # version 2.1 of the License, or (at your option) any later version.
12
13 # This library is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 # Lesser General Public License for more details.
17
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with this library; if not, write to the Free Software
20 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21 #
22 # ------------------------------------------------------------------------------
23 #
24 # Please feel free to send questions, suggestions or improvements to:
25 #
26 #       David J. Goehrig
27 #       dgoehrig\@cpan.org
28 #
29 #
30 # basic testing of SDL::Cdrom
31
32 BEGIN {
33         unshift @INC, 'blib/lib','blib/arch';
34 }
35
36 use strict;
37
38 use Test::More;
39
40 plan ( tests => 3 );
41
42 use_ok( 'SDL::Cdrom' ); 
43   
44 can_ok ('main', qw/ CD_NUM_DRIVES /);
45
46 can_ok ('SDL::Cdrom', qw/
47         new
48         name
49         status
50         play
51         pause
52         resume
53         stop
54         eject
55         id
56         num_tracks
57         track
58         current
59         current_frame /);