[project @ 6089]
[poe-component-client-mpd.git] / t / 00-load.t
blob87ab23d5d6ba7d16385d22513bfb3cee01240069
1 #!perl
3 # This file is part of POE::Component::Client::MPD.
4 # Copyright (c) 2007 Jerome Quelin, all rights reserved.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or (at
9 # your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 use strict;
23 use warnings;
25 use Test::More tests => 11;
27 BEGIN { use_ok( 'POE::Component::Client::MPD' ); }
28 my $version = $POE::Component::Client::MPD::VERSION;
29 diag( "Testing POE::Component::Client::MPD $version, Perl $], $^X" );
31 use_ok( 'POE::Component::Client::MPD::Item::Directory' );
32 use_ok( 'POE::Component::Client::MPD::Item::Playlist' );
33 use_ok( 'POE::Component::Client::MPD::Item::Song' );
34 use_ok( 'POE::Component::Client::MPD::Item' );
35 use_ok( 'POE::Component::Client::MPD::Message' );
36 use_ok( 'POE::Component::Client::MPD::Stats' );
37 use_ok( 'POE::Component::Client::MPD::Collection' );
38 use_ok( 'POE::Component::Client::MPD::Commands' );
39 use_ok( 'POE::Component::Client::MPD::Playlist' );
40 use_ok( 'POE::Component::Client::MPD::Connection' );