test updates
[catagits/Catalyst-Plugin-ConfigLoader.git] / t / lib / TestApp.pm
CommitLineData
b2d85594 1package TestApp;
2
3use strict;
4use warnings;
5
6use Catalyst qw/ConfigLoader/;
7
8our $VERSION = '0.01';
9
10__PACKAGE__->setup;
11
9742697f 12sub finalize_config {
13 my $c = shift;
587d381b 14 $c->config( foo => 'bar' );
c098c4a2 15 $c->next::method( @_ );
9742697f 16}
17
b2d85594 181;