v1.21
[catagits/Catalyst-Action-REST.git] / t / callback.t
CommitLineData
178f8470 1use strict;
2use warnings;
3use Test::More;
4use FindBin;
5
6use lib ("$FindBin::Bin/lib", "$FindBin::Bin/../lib");
7use Test::Rest;
8
9use_ok 'Catalyst::Test', 'Test::Serialize';
10
11my $t = Test::Rest->new('content_type' => 'text/my-csv');
12
13my $has_serializer = eval "require XML::Simple";
14
15 my $monkey_template = {
16 monkey => 'likes chicken!',
17 };
18 my $mres = request($t->get(url => '/monkey_get'));
19 ok( $mres->is_success, 'GET the monkey succeeded' );
20 my $output = { split( /,/, $mres->content ) };
21 is_deeply($output, $monkey_template, "GET returned the right data");
22
23 my $post_data = {
24 'sushi' => 'is good for monkey',
25 };
26 my $mres_post = request( $t->post( url => '/monkey_put', data => join( ',', %$post_data ) ) );
27 ok( $mres_post->is_success, "POST to the monkey succeeded");
28 is_deeply($mres_post->content, "is good for monkey", "POST data matches");
29
301;
31
32done_testing;