fix Test::More prereq for done_testing
[catagits/Catalyst-Plugin-Session-State-Stash.git] / t / lib / TestApp.pm
CommitLineData
effd6244 1package TestApp;
2use strict;
3use warnings;
4
5use base qw/Catalyst/;
6
7use Catalyst qw/
8 Session
9 Session::Store::Dummy
10 Session::State::Stash
11 /;
12
13__PACKAGE__->setup;
14
151;