Import of FLORA/CatalystX-REPL-0.01 from CPAN.

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
This commit is contained in:
Florian Ragwitz
2014-10-23 17:34:26 -05:00
committed by Gitpan
commit c7e0437c70
12 changed files with 567 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
use strict;
use warnings;
use Test::More tests => 5;
use Test::Expect;
expect_run(
command => "${^X} t/request.pl /foo/bar",
prompt => '$ ',
quit => 'exit'
);
expect_send('1 + 1');
expect_like(qr/\b2\b/, 'in the REPL');
expect_send(':t');
expect_like(qr/\bTestApp::Controller::Foo::bar\b/, 'exception in controller action');