Fix plugin links in POD
[catagits/Catalyst-View-Component-SubInclude.git] / t / lib / KeepStash.pm
1 package KeepStash;
2
3 use strict;
4 use warnings;
5
6 use Catalyst::Runtime '5.70';
7
8 use base qw/Catalyst/;
9 use Catalyst qw/
10     SubRequest
11 /;
12
13 our $VERSION = '0.01';
14
15
16 __PACKAGE__->config( name => 'KeepStash' );
17
18 __PACKAGE__->setup();
19
20 1;