fixed bug where setup wasn't called without plugins
[catagits/CatalystX-Declare.git] / t / 011_plain_application.t
diff --git a/t/011_plain_application.t b/t/011_plain_application.t
new file mode 100644 (file)
index 0000000..f8359bb
--- /dev/null
@@ -0,0 +1,14 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+
+use FindBin;
+use lib "$FindBin::Bin/lib";
+
+use Test::More; 
+use Catalyst::Test 'PlainTestApp';
+
+is get('/foo'), 'foo', 'view was reached via RenderView';
+
+done_testing;
+