Forgot to add the TestLog class I created
[catagits/Catalyst-Plugin-Static-Simple.git] / t / lib / TestLog.pm
1 package TestLog;
2 use Moose;
3 extends 'Catalyst::Log';
4
5 our $logged;
6
7 override warn => sub {
8     my $self = shift;
9     $logged = shift;
10 };
11
12 1;