added test for Moose controller inheritance using method modifiers
[catagits/Catalyst-Runtime.git] / t / aggregate / live_component_controller_moose.t
CommitLineData
2167982f 1use strict;
2use warnings;
3
4use FindBin;
5use lib "$FindBin::Bin/../lib";
6
87e41a18 7use Test::More tests => 4;
2167982f 8use Catalyst::Test 'TestApp';
9
10{
11 my $response = request('http://localhost/moose/get_attribute');
12 ok($response->is_success);
13 is($response->content, '42', 'attribute default values get set correctly');
14}
87e41a18 15
16{
17 my $response = request('http://localhost/moose/methodmodifiers/get_attribute');
18 ok($response->is_success);
19 is($response->header('X-Catalyst-Test-After'), 'after called', 'after works as expected');
20}