lighttpd: Allow running of a single test
[catagits/Catalyst-Runtime.git] / t / optional_lighttpd-fastcgi-non-root.t
index 6e9fe06..fd56d6c 100644 (file)
@@ -3,29 +3,16 @@
 use strict;
 use warnings;
 
-BEGIN {
-    use Test::More;
-
-    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 $@;
-
-    my $lighttpd_bin = $ENV{LIGHTTPD_BIN} || 'lighttpd';
-    plan skip_all => 'Cannot find lighttpd, please set LIGHTTPD_BIN'
-    unless -x $lighttpd_bin;
-
-    plan tests => 1;
-
-};
-
 use File::Path;
 use FindBin;
 use IO::Socket;
+use Test::More;
 
 plan skip_all => 'set TEST_LIGHTTPD to enable this test' 
     unless $ENV{TEST_LIGHTTPD};
+    
+eval "use FCGI";
+plan skip_all => 'FCGI required' if $@;
 
 eval "use Catalyst::Devel 1.0";
 plan skip_all => 'Catalyst::Devel required' if $@;
@@ -112,7 +99,7 @@ while ( check_port( 'localhost', $port ) != 1 ) {
 # run the testsuite against the server
 $ENV{CATALYST_SERVER} = "http://localhost:$port/deep/path";
 
-my @tests = glob('t/live_*');
+my @tests = (shift) || glob('t/live_*');
 eval {
     runtests(@tests);
 };