X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcgibin.t;h=83406334663baa33bfc299002cb9029709a0fadf;hb=9cc2dd4cf91d00221ca404219404c1b9bfbf8a80;hp=f8271fa0119a6c685b9aae89f24b2e25d654c385;hpb=46a4350c9e695982b78a5ca23343ecb46de66768;p=catagits%2FCatalyst-Controller-WrapCGI.git diff --git a/t/cgibin.t b/t/cgibin.t index f8271fa..8340633 100644 --- a/t/cgibin.t +++ b/t/cgibin.t @@ -14,7 +14,7 @@ use HTTP::Request::Common; # this should be ignored $ENV{MOD_PERL} = "mod_perl/2.0"; -my $response = request POST '/cgi-bin/path/test.pl', [ +my $response = request POST '/my-bin/path/test.pl', [ foo => 'bar', bar => 'baz' ]; @@ -41,5 +41,5 @@ SKIP: { skip "Can't run shell scripts on non-*nix", 1 if $^O eq 'MSWin32' || $^O eq 'VMS'; - is(get('/cgi-bin/test.sh'), "Hello!\n", 'Non-Perl CGI File'); + is(get('/my-bin/test.sh'), "Hello!\n", 'Non-Perl CGI File'); }