X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Foptional_http-server.t;h=4b69d8096e9113b4ee50ed939f4914e6b7778ff5;hb=69eecfe56af710d0698539ea25dc1bc84282e013;hp=5516b6647fcb6dc47a041f369aa28a28c163821e;hpb=5c9c810dc09594a364ea85a023e8803bbbd11853;p=catagits%2FCatalyst-Runtime.git diff --git a/t/optional_http-server.t b/t/optional_http-server.t index 5516b66..4b69d80 100644 --- a/t/optional_http-server.t +++ b/t/optional_http-server.t @@ -11,10 +11,10 @@ use Test::More; plan skip_all => 'set TEST_HTTP to enable this test' unless $ENV{TEST_HTTP}; eval "use Catalyst::Devel 1.0"; plan skip_all => 'Catalyst::Devel required' if $@; +eval "use File::Copy::Recursive"; +plan skip_all => 'File::Copy::Recursive required' if $@; plan tests => 1; -use File::Copy::Recursive; - # clean up rmtree "$FindBin::Bin/../t/tmp" if -d "$FindBin::Bin/../t/tmp";