gitpan-cpan-distribution: CatalystX-REPL gitpan-cpan-version: 0.01 gitpan-cpan-path: FLORA/CatalystX-REPL-0.01.tar.gz gitpan-cpan-author: FLORA gitpan-cpan-maturity: released
14 lines
209 B
Perl
14 lines
209 B
Perl
use strict;
|
|
use warnings;
|
|
|
|
BEGIN { @ENV{qw/CATALYST_DEBUG CATALYST_REPL/} = (1, 1); }
|
|
|
|
use FindBin;
|
|
use lib "$FindBin::Bin/lib";
|
|
|
|
use Catalyst::Test 'TestApp';
|
|
|
|
$Carp::REPL::noprofile = 1;
|
|
|
|
request($ARGV[0]);
|