initial checkin
[catagits/CatalystX-Routes.git] / t / routes.t
CommitLineData
c4057ce2 1use strict;
2use warnings;
3
4use Test::More 0.88;
5
6use lib 't/lib';
7use MyApp1;
8
9my $app = MyApp1->new();
10
11ok( $app, 'instantiated MyApp1' );
12
13my $action = $app->dispatcher()->get_action('/foo');
14
15ok( $action, 'got an action for /foo' );
16
17
18done_testing();