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