fc9d60b822c7c84a09611fd1061e468d8ef6c562
[catagits/Catalyst-Plugin-Session.git] / t / lib / SessionTestApp.pm
1 #!/usr/bin/env perl
2
3 package SessionTestApp;
4 use Catalyst qw/Session Session::Store::Dummy Session::State::Cookie/;
5
6 use strict;
7 use warnings;
8
9 __PACKAGE__->config('Plugin::Session' => {
10     # needed for live_verify_user_agent.t; should be harmless for other tests 
11     verify_user_agent => 1,  
12 });
13
14 __PACKAGE__->setup;
15
16 __PACKAGE__;
17