X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=script%2Fndweb_test.pl;h=9b7ec40c67f46cd70c8128ce43486836998b4688;hb=8ab709d6aa740c7ab3ebccb37903d8c12ef7b894;hp=a69d3e47bd428648fe22633c29e0af1b72800925;hpb=3fc40135d773a95ede229e71efb48e07fdf3c418;p=ndwebbie.git diff --git a/script/ndweb_test.pl b/script/ndweb_test.pl index a69d3e4..9b7ec40 100755 --- a/script/ndweb_test.pl +++ b/script/ndweb_test.pl @@ -1,20 +1,7 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl -use strict; -use warnings; -use Getopt::Long; -use Pod::Usage; -use FindBin; -use lib "$FindBin::Bin/../lib"; -use Catalyst::Test 'NDWeb'; - -my $help = 0; - -GetOptions( 'help|?' => \$help ); - -pod2usage(1) if ( $help || !$ARGV[0] ); - -print request($ARGV[0])->content . "\n"; +use Catalyst::ScriptRunner; +Catalyst::ScriptRunner->run('NDWeb', 'Test'); 1; @@ -27,7 +14,7 @@ ndweb_test.pl - Catalyst Test ndweb_test.pl [options] uri Options: - -help display this help and exits + --help display this help and exits Examples: ndweb_test.pl http://localhost/some_action @@ -41,14 +28,13 @@ ndweb_test.pl [options] uri Run a Catalyst action from the command line. -=head1 AUTHOR +=head1 AUTHORS -Sebastian Riedel, C -Maintained by the Catalyst Core Team. +Catalyst Contributors, see Catalyst.pm =head1 COPYRIGHT -This library is free software, you can redistribute it and/or modify +This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. =cut