summaryrefslogtreecommitdiffstats
path: root/t/lib/MyApp.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/MyApp.pm')
-rw-r--r--t/lib/MyApp.pm13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/lib/MyApp.pm b/t/lib/MyApp.pm
new file mode 100644
index 0000000..279ab6a
--- /dev/null
+++ b/t/lib/MyApp.pm
@@ -0,0 +1,13 @@
+package MyApp;
+use Moose;
+use namespace::autoclean;
+
+extends 'Catalyst';
+
+__PACKAGE__->config(
+ name => 'MyApp',
+);
+
+__PACKAGE__->setup;
+
+1;