attempt to get this actually right this time
[catagits/Test-WWW-Mechanize-Catalyst.git] / t / lib / CattySession.pm
1 package CattySession;
2
3 use strict;
4 use warnings;
5
6 use Catalyst qw/
7     Session
8     Session::State::Cookie
9     Session::Store::Dummy
10 /;
11 use Cwd;
12
13 __PACKAGE__->config(
14     name => 'CattySession',
15     root => cwd . '/t/root',
16 );
17
18 __PACKAGE__->setup;
19
20 1;
21