separate context class for TestAppDoubleAutoBug
[catagits/Catalyst-Runtime.git] / t / lib / TestAppDoubleAutoBug.pm
CommitLineData
7f23827b 1use strict;
2use warnings;
3
4package TestAppDoubleAutoBug;
5
6use Catalyst qw/
7 Test::Errors
8 Test::Headers
9 Test::Plugin
10/;
11
a478032e 12use TestAppDoubleAutoBug::Context;
65441f61 13
7f23827b 14our $VERSION = '0.01';
15
16__PACKAGE__->config( name => 'TestAppDoubleAutoBug', root => '/some/dir' );
a478032e 17__PACKAGE__->context_class( 'TestAppDoubleAutoBug::Context' );
7f23827b 18__PACKAGE__->setup;
19
f4c8c6d4 201;
21