Fixed some typos
[catagits/Catalyst-Runtime.git] / t / live / component / controller / action / regexp.t
CommitLineData
dd4e6fd2 1#!perl
2
3use strict;
4use warnings;
5
6use FindBin;
9770ad56 7use lib "$FindBin::Bin/../../../lib";
dd4e6fd2 8
d8c66af5 9use Test::More tests => 120;
dd4e6fd2 10use Catalyst::Test 'TestApp';
11
d8c66af5 12for ( 1 .. 10 ) {
13 {
14 ok( my $response = request('http://localhost/action/regexp/10/hello'),
15 'Request' );
16 ok( $response->is_success, 'Response Successful 2xx' );
17 is( $response->content_type, 'text/plain', 'Response Content-Type' );
18 is( $response->header('X-Catalyst-Action'),
19 '^action/regexp/(\d+)/(\w+)$', 'Test Action' );
20 is(
21 $response->header('X-Test-Class'),
22 'TestApp::Controller::Action::Regexp',
23 'Test Class'
24 );
25 like(
26 $response->content,
27 qr/^bless\( .* 'Catalyst::Request' \)$/s,
28 'Content is a serialized Catalyst::Request'
29 );
30 }
dd4e6fd2 31
d8c66af5 32 {
33 ok( my $response = request('http://localhost/action/regexp/hello/10'),
34 'Request' );
35 ok( $response->is_success, 'Response Successful 2xx' );
36 is( $response->content_type, 'text/plain', 'Response Content-Type' );
37 is( $response->header('X-Catalyst-Action'),
38 '^action/regexp/(\w+)/(\d+)$', 'Test Action' );
39 is(
40 $response->header('X-Test-Class'),
41 'TestApp::Controller::Action::Regexp',
42 'Test Class'
43 );
44 like(
45 $response->content,
46 qr/^bless\( .* 'Catalyst::Request' \)$/s,
47 'Content is a serialized Catalyst::Request'
48 );
49 }
dd4e6fd2 50}