Tests for the modules with a keep_stash option
[catagits/Catalyst-View-Component-SubInclude.git] / t / lib / KeepStash.pm
diff --git a/t/lib/KeepStash.pm b/t/lib/KeepStash.pm
new file mode 100644 (file)
index 0000000..a8bf393
--- /dev/null
@@ -0,0 +1,20 @@
+package KeepStash;
+
+use strict;
+use warnings;
+
+use Catalyst::Runtime '5.70';
+
+use base qw/Catalyst/;
+use Catalyst qw/
+    SubRequest
+/;
+
+our $VERSION = '0.01';
+
+
+__PACKAGE__->config( name => 'KeepStash' );
+
+__PACKAGE__->setup();
+
+1;