X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Action-REST.git;a=blobdiff_plain;f=t%2Flib%2FTest%2FSerialize.pm;h=432f91c99d7811b153232d49023a772c6aba7d91;hp=923885e3a39b6efe71e70cfafb4f3555a4285d04;hb=960e29eed9ccd049c3c0dcd78a65308242a64ae0;hpb=10bcd217c37d68aabbb0db8a5a7e233e679cb945 diff --git a/t/lib/Test/Serialize.pm b/t/lib/Test/Serialize.pm index 923885e..432f91c 100644 --- a/t/lib/Test/Serialize.pm +++ b/t/lib/Test/Serialize.pm @@ -4,18 +4,20 @@ use FindBin; use lib ("$FindBin::Bin/../lib"); -use strict; -use warnings; +use Moose; +use namespace::autoclean; use Catalyst::Runtime '5.70'; use Catalyst; +use Test::Catalyst::Log; __PACKAGE__->config( name => 'Test::Serialize', ); __PACKAGE__->setup; +__PACKAGE__->log( Test::Catalyst::Log->new ); 1;