[project @ 5295]
[audio-mpd.git] / t / 00use.t
blob37c22a66579edeed4bd3f4b516dca306cd3d63b8
2 use strict;
3 use Test;
6 # use a BEGIN block so we print our plan before Audio::MPD is loaded
7 BEGIN { plan tests => 1 }
9 # load Audio::MPD
10 use Audio::MPD;
13 # Helpful notes.  All note-lines must start with a "#".
14 print "# I'm testing Audio::MPD version $Audio::MPD::VERSION\n";
16 # Module has loaded sucessfully 
17 ok(1);
20 exit;