From 5251d1548f96eb807d82f228561414322b615206 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Quelin?= Date: Mon, 5 Jan 2009 14:18:22 +0100 Subject: [PATCH] mpd doesn't seem to provide an http urlhandler anymore gone with 0.14 --- t/22-general.t | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/t/22-general.t b/t/22-general.t index 2997e2c..47337ef 100644 --- a/t/22-general.t +++ b/t/22-general.t @@ -18,7 +18,7 @@ use Test::More; eval 'use Audio::MPD::Test'; plan skip_all => $@ if $@ =~ s/\n+Compilation failed.*//s; -plan tests => 8; +plan tests => 7; my $mpd = Audio::MPD->new; @@ -61,7 +61,6 @@ is( $@, '', 'updating part of collection' ); # # testing urlhandlers. my @handlers = $mpd->urlhandlers; -is( scalar @handlers, 1, 'only one url handler supported' ); -is( $handlers[0], 'http://', 'only http is supported by now' ); +is( scalar @handlers, 0, 'only one url handler supported' ); exit; -- 2.11.4.GIT