3 # This file is part of Audio::MPD.
4 # Copyright (c) 2007 Jerome Quelin <jquelin@cpan.org>
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
28 # are we able to test module?
29 eval 'use Audio::MPD::Test';
30 plan skip_all => $@ if $@ =~ s/\n+Compilation failed.*//s;
33 my $mpd = Audio::MPD->new;
39 is( $mpd->status->repeat, 1, 'enabling repeat mode' );
41 is( $mpd->status->repeat, 0, 'disabling repeat mode' );
43 is( $mpd->status->repeat, 1, 'toggling repeat mode to on' );
45 is( $mpd->status->repeat, 0, 'toggling repeat mode to off' );
51 is( $mpd->status->random, 1, 'enabling random mode' );
53 is( $mpd->status->random, 0, 'disabling random mode' );
55 is( $mpd->status->random, 1, 'toggling random mode to on' );
57 is( $mpd->status->random, 0, 'toggling random mode to off' );
63 is( $mpd->status->xfade, 15, 'enabling fading' );
65 is( $mpd->status->xfade, 0, 'disabling fading by default' );