Test for verify address and fix reset __address
[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,
2a1463db 12
13 # need for live_verify_address.t; should be harmless for other tests
14 verify_address => 1,
15
064c3709 16});
06c621b5 17
300eb468 18__PACKAGE__->setup;
19
20__PACKAGE__;
21