fixed test app for t/aggregate/custom_live_component_controller_action_auto_doublebug.t
[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
65441f61 12use TestApp::Context;
13
7f23827b 14our $VERSION = '0.01';
15
16__PACKAGE__->config( name => 'TestAppDoubleAutoBug', root => '/some/dir' );
65441f61 17__PACKAGE__->context_class( 'TestApp::Context' );
7f23827b 18__PACKAGE__->setup;
19
f4c8c6d4 201;
21