Fixed so that session_expires == stored session expires
[catagits/Catalyst-Plugin-Session.git] / t / lib / SessionExpiry.pm
CommitLineData
079b2fbe 1package SessionExpiry;
2use Catalyst
3 qw/Session Session::Store::Dummy Session::State::Cookie Authentication/;
4
5use strict;
6use warnings;
7
8__PACKAGE__->config(
9 'Plugin::Session' => {
10
11 expires => 20,
12 expiry_threshold => 10,
13
14 },
15
16);
17
18__PACKAGE__->setup;
19
20__PACKAGE__;
21