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