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