File: 00-compile.t

package info (click to toggle)
libtest-corpus-audio-mpd-perl 1.120990-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 312 kB
  • sloc: perl: 141; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!perl
#
# This file is part of Test-Corpus-Audio-MPD
#
# This software is copyright (c) 2009 by Jerome Quelin.
#
# This is free software; you can redistribute it and/or modify it under
# the same terms as the Perl 5 programming language system itself.
#

use Test::More tests => 1;

eval "use Test::Corpus::Audio::MPD";
SKIP: {
    skip "module is expected to fail under some circumstance", 1
        if $@ =~ /mpd not installed|installed mpd is not music player daemon|mpd is running/;
    is( $@, '', "module loads ok" );
}