Add tests which should fail, but don't.
[catagits/Catalyst-Action-REST.git] / t / lib / Test / Serialize.pm
CommitLineData
e601adda 1package Test::Serialize;
2
3use FindBin;
4
5use lib ("$FindBin::Bin/../lib");
6
930013e6 7use Moose;
8use namespace::autoclean;
e601adda 9
10use Catalyst::Runtime '5.70';
11
12use Catalyst;
52cef1ab 13use Test::Catalyst::Log;
e601adda 14
15__PACKAGE__->config(
faf5c20b 16 name => 'Test::Serialize',
e601adda 17);
18
19__PACKAGE__->setup;
52cef1ab 20__PACKAGE__->log( Test::Catalyst::Log->new );
9a76221e 21
e601adda 221;
23