import my old svn repo here
[catagits/Catalyst-Component-ACCEPT_CONTEXT.git] / t / 01-live.t
diff --git a/t/01-live.t b/t/01-live.t
new file mode 100644 (file)
index 0000000..d77b24d
--- /dev/null
@@ -0,0 +1,15 @@
+#!perl
+# Copyright (c) 2007 Jonathan Rockway <jrockway@cpan.org>
+
+use strict;
+use warnings;
+use Test::More tests => 4;
+
+use FindBin qw($Bin);
+use lib "$Bin/lib";
+use Catalyst::Test qw(TestApp);
+
+is( get('/controller'), 'controller', 'got controller ok' );
+is( get('/model'), 'model', 'model ok' );
+is( get('/view'), 'view', 'view ok' );
+is( get('/foo'), 'baz', 'got app at new() time' );