Adding basic test cases for the view.
[catagits/Catalyst-View-Email.git] / t / lib / TestApp.pm
diff --git a/t/lib/TestApp.pm b/t/lib/TestApp.pm
new file mode 100644 (file)
index 0000000..1ef6b28
--- /dev/null
@@ -0,0 +1,14 @@
+package # Hide from PAUSE
+    TestApp;
+
+use Catalyst;
+use FindBin;
+
+TestApp->config(
+    root => "$FindBin::Bin/root",
+    default_view => 'TT'
+);
+
+TestApp->setup;
+
+1;