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