Tests for the modules with a keep_stash option
[catagits/Catalyst-View-Component-SubInclude.git] / t / lib / KeepStash.pm
CommitLineData
f78902ea 1package KeepStash;
2
3use strict;
4use warnings;
5
6use Catalyst::Runtime '5.70';
7
8use base qw/Catalyst/;
9use Catalyst qw/
10 SubRequest
11/;
12
13our $VERSION = '0.01';
14
15
16__PACKAGE__->config( name => 'KeepStash' );
17
18__PACKAGE__->setup();
19
201;