Move the testapp out of the main directory and under t/, avoiding the need for a...
[catagits/Catalyst-Engine-STOMP.git] / t / lib / StompTestApp.pm
diff --git a/t/lib/StompTestApp.pm b/t/lib/StompTestApp.pm
new file mode 100644 (file)
index 0000000..7ed0f1b
--- /dev/null
@@ -0,0 +1,16 @@
+package # Hide from PAUSE
+  StompTestApp;
+use Moose;
+use Catalyst::Runtime '5.80003';
+
+use Catalyst qw/
+                ConfigLoader
+              /;
+use namespace::autoclean;
+
+extends 'Catalyst';
+
+__PACKAGE__->config( name => 'StompTestApp' );
+__PACKAGE__->setup;
+__PACKAGE__->meta->make_immutable;
+