X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flib%2FTestAppDoubleAutoBug.pm;h=1044a307152726171e4a04d259f8234c8af5686d;hp=82a5e070a27fb870a76f65ee062a004f4de825a1;hb=HEAD;hpb=cf013d38de7a842c70c9d237a9ee3c18f0a42948 diff --git a/t/lib/TestAppDoubleAutoBug.pm b/t/lib/TestAppDoubleAutoBug.pm index 82a5e07..1044a30 100644 --- a/t/lib/TestAppDoubleAutoBug.pm +++ b/t/lib/TestAppDoubleAutoBug.pm @@ -3,6 +3,7 @@ use warnings; package TestAppDoubleAutoBug; +use TestLogger; use Catalyst qw/ Test::Errors Test::Headers @@ -13,6 +14,8 @@ our $VERSION = '0.01'; __PACKAGE__->config( name => 'TestAppDoubleAutoBug', root => '/some/dir' ); +__PACKAGE__->log(TestLogger->new); + __PACKAGE__->setup; sub execute { @@ -44,3 +47,6 @@ sub execute { return $c->SUPER::execute(@_); } + +1; +