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