trim extraneous space
[catagits/Catalyst-Plugin-Session-State-Cookie.git] / t / lib / CookieTestApp.pm
1 package # Hide from PAUSE
2   CookieTestApp;
3 use strict;
4 use warnings;
5
6 use base qw/Catalyst/;
7 use Catalyst qw/
8   Session
9   Session::Store::Dummy
10   Session::State::Cookie
11   /;
12
13 __PACKAGE__->config('Plugin::Session' => { cookie_secure => 2 });
14
15 __PACKAGE__->setup;
16
17 1;