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