tests for the config( ...->{file} ) option. addresses bug when ->{file} is a dir...
[catagits/Catalyst-Plugin-ConfigLoader.git] / t / lib / TestApp1.pm
CommitLineData
802a7626 1package TestApp1;
2
3use strict;
4use warnings;
5
6use MRO::Compat;
7
8use Catalyst qw/ConfigLoader/;
9
10our $VERSION = '0.01';
11
12__PACKAGE__->setup;
13
14sub finalize_config {
15 my $c = shift;
16 $c->config( foo => 'bar1' );
17 $c->next::method( @_ );
18}
19
201;