Add tests which should fail, but don't.
[catagits/Catalyst-Action-REST.git] / t / lib / Test / Catalyst / Action / REST.pm
CommitLineData
c5c27d42 1package Test::Catalyst::Action::REST;
ffb4cc71 2
930013e6 3use Moose;
4use namespace::autoclean;
ffb4cc71 5
6use Catalyst::Runtime '5.70';
7
8use Catalyst;
0d86eca6 9use FindBin;
52cef1ab 10use Test::Catalyst::Log;
ffb4cc71 11
12__PACKAGE__->config(
c5c27d42 13 name => 'Test::Catalyst::Action::REST',
0d86eca6 14 # RT#43840 -- this was ignored in 0.66 and earlier
15 'Controller::Serialize' => {
16 content_type_stash_key => 'serialize_content_type',
17 },
ffb4cc71 18);
19__PACKAGE__->setup;
52cef1ab 20__PACKAGE__->log( Test::Catalyst::Log->new );
ffb4cc71 21
221;