Rip the testapp embedded in the test out, this isn't supported and doesn't work for me
[catagits/Catalyst-Action-REST.git] / t / lib / Test / Catalyst / Action / REST.pm
CommitLineData
c5c27d42 1package Test::Catalyst::Action::REST;
ffb4cc71 2
3use strict;
4use warnings;
5
6use Catalyst::Runtime '5.70';
7
8use Catalyst;
0d86eca6 9use FindBin;
ffb4cc71 10
11__PACKAGE__->config(
c5c27d42 12 name => 'Test::Catalyst::Action::REST',
0d86eca6 13 # RT#43840 -- this was ignored in 0.66 and earlier
14 'Controller::Serialize' => {
15 content_type_stash_key => 'serialize_content_type',
16 },
ffb4cc71 17);
18__PACKAGE__->setup;
19
201;