Small cleanups
[catagits/Catalyst-Plugin-Session.git] / t / lib / SessionValid.pm
1 package SessionValid;
2 use Catalyst qw/Session Session::Store::Dummy Session::State::Cookie/;
3
4 use strict;
5 use warnings;
6
7 __PACKAGE__->config('Plugin::Session' => {
8     cookie_expires => 0,
9     expires => 1,
10 });
11
12 __PACKAGE__->setup;
13
14 __PACKAGE__;
15