1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
#!perl
#
# This file is part of Audio::MPD::Common
# Copyright (c) 2007 Jerome Quelin, all rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the same terms as Perl itself.
#
#
use strict;
use warnings;
use Test::More tests => 8;
BEGIN { use_ok( 'Audio::MPD::Common' ); }
my $version = $Audio::MPD::Common::VERSION;
diag( "Testing Audio::MPD::Common $version, Perl $], $^X" );
use_ok( 'Audio::MPD::Common::Item::Directory' );
use_ok( 'Audio::MPD::Common::Item::Playlist' );
use_ok( 'Audio::MPD::Common::Item::Song' );
use_ok( 'Audio::MPD::Common::Item' );
use_ok( 'Audio::MPD::Common::Time' );
use_ok( 'Audio::MPD::Common::Stats' );
use_ok( 'Audio::MPD::Common::Status' );
exit;
|