Added ability for engines to run the entire prepare and finalize flows (for POE engine)
[catagits/Catalyst-Runtime.git] / t / live_loop.t
CommitLineData
1627551a 1#!perl
2
3use strict;
4use warnings;
5
6use FindBin;
7use lib "$FindBin::Bin/lib";
8
9use Test::More tests => 3;
10use Catalyst::Test 'TestApp';
11
12ok( my $response = request('http://localhost/loop_test'), 'Request' );
13ok( $response->is_success, 'Response Successful 2xx' );
14ok( $response->header('X-Class-Forward-Test-Method'), 'Loop OK' );