Thats action registration sorted out. Now I just need to introspect all the models...
[catagits/CatalystX-DynamicComponent.git] / t / 01app.t
1 use strict;
2 use warnings;
3 use Test::More tests => 3;
4
5 BEGIN { use_ok 'Catalyst::Test', 'DynamicAppDemo' }
6
7 {
8     my $res = request('/fakeexample/register_me');
9     ok( $res->is_success, 'should succeed' );
10     is( $res->header('X-Foo'), 'bar', 'is calling correct code' );
11 }
12