re-add MRO::Compat to test file to be safe
[catagits/Catalyst-Plugin-ConfigLoader.git] / t / lib / TestApp.pm
index 6d4b336..8d1325c 100644 (file)
@@ -3,10 +3,18 @@ package TestApp;
 use strict;
 use warnings;
 
+use MRO::Compat;
+
 use Catalyst qw/ConfigLoader/;
 
 our $VERSION = '0.01';
 
 __PACKAGE__->setup;
 
+sub finalize_config {
+    my $c = shift;
+    $c->config( foo => 'bar' );
+    $c->next::method( @_ );
+}
+
 1;