Tests which I believe show that JSON encoding is handled correctly. I.E. You pass...
[catagits/Catalyst-Action-REST.git] / t / lib / Test / Serialize.pm
1
2 package Test::Serialize;
3
4 use FindBin;
5
6 use lib ("$FindBin::Bin/../lib");
7
8 use strict;
9 use warnings;
10
11 use Catalyst::Runtime '5.70';
12
13 use Catalyst;
14
15 __PACKAGE__->config(
16     name => 'Test::Serialize',
17 );
18
19 __PACKAGE__->setup;
20
21 __PACKAGE__->setup_component("Test::Serialize::Controller::REST");
22 __PACKAGE__->setup_component("Test::Serialize::View::Simple");
23
24 1;
25