aboutsummaryrefslogtreecommitdiff
path: root/t/podcast.t
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2014-01-25 17:08:22 -0400
committerJoey Hess <joey@kitenet.net>2014-01-25 17:08:22 -0400
commit90ebe2e57dcd74e0e63a494b48adeddb7840bc20 (patch)
treebb91626fd84b501a8a7ea44f9fd995fec878bc5c /t/podcast.t
parent274fbca2ce49126ed250f0b2a5bcf022215df097 (diff)
downloadikiwiki-90ebe2e57dcd74e0e63a494b48adeddb7840bc20.tar
ikiwiki-90ebe2e57dcd74e0e63a494b48adeddb7840bc20.tar.gz
avoid running this test if File:MimeInfo is not installed
it's needed to get mime types in the feed
Diffstat (limited to 't/podcast.t')
-rwxr-xr-xt/podcast.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/podcast.t b/t/podcast.t
index 1052aea70..f036c3113 100755
--- a/t/podcast.t
+++ b/t/podcast.t
@@ -3,10 +3,10 @@ use warnings;
use strict;
BEGIN {
- eval q{use XML::Feed; use HTML::Parser; use HTML::LinkExtor};
+ eval q{use XML::Feed; use HTML::Parser; use HTML::LinkExtor; use File::MimeInfo};
if ($@) {
eval q{use Test::More skip_all =>
- "XML::Feed and/or HTML::Parser not available"};
+ "XML::Feed and/or HTML::Parser or File::MimeInfo not available"};
}
else {
eval q{use Test::More tests => 136};