Rename the test app into the lib directory
[catagits/Catalyst-View-Component-SubInclude.git] / t / lib / ESITest.pm
diff --git a/t/lib/ESITest.pm b/t/lib/ESITest.pm
new file mode 100644 (file)
index 0000000..7b2f026
--- /dev/null
@@ -0,0 +1,23 @@
+package ESITest;
+
+use strict;
+use warnings;
+
+use Catalyst::Runtime '5.70';
+
+use parent qw/Catalyst/;
+use Catalyst qw/
+    -Debug
+    ConfigLoader
+    Static::Simple
+    SubRequest
+/;
+
+our $VERSION = '0.01';
+
+
+__PACKAGE__->config( name => 'ESITest' );
+
+__PACKAGE__->setup();
+
+1;