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