initial checkin
[catagits/CatalystX-Routes.git] / t / routes.t
diff --git a/t/routes.t b/t/routes.t
new file mode 100644 (file)
index 0000000..ef7c160
--- /dev/null
@@ -0,0 +1,18 @@
+use strict;
+use warnings;
+
+use Test::More 0.88;
+
+use lib 't/lib';
+use MyApp1;
+
+my $app = MyApp1->new();
+
+ok( $app, 'instantiated MyApp1' );
+
+my $action = $app->dispatcher()->get_action('/foo');
+
+ok( $action, 'got an action for /foo' );
+
+
+done_testing();