From: Andy Grundman Date: Mon, 17 Oct 2005 18:19:34 +0000 (+0000) Subject: Don't tell people to install a module unless they want to run the test X-Git-Tag: 5.7099_04~1204 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=ac93c0948c744f2f56ebff61be0a4ff0a821ab22 Don't tell people to install a module unless they want to run the test --- diff --git a/t/optional/01http-server.t b/t/optional/01http-server.t index 18d8797..6ba92d4 100644 --- a/t/optional/01http-server.t +++ b/t/optional/01http-server.t @@ -8,8 +8,8 @@ use FindBin; use Test::More; eval "use File::Copy::Recursive"; -plan skip_all => 'File::Copy::Recursive required' if $@; plan skip_all => 'set TEST_HTTP to enable this test' unless $ENV{TEST_HTTP}; +plan skip_all => 'File::Copy::Recursive required' if $@; # clean up rmtree "$FindBin::Bin/../../t/var" if -d "$FindBin::Bin/../../t/var";