normalize Changes even more
[catagits/Catalyst-Action-REST.git] / t / json.t
index 673c0a9..7c8cc03 100644 (file)
--- a/t/json.t
+++ b/t/json.t
@@ -2,16 +2,12 @@ use strict;
 use warnings;
 use Test::More;
 use FindBin;
+use Test::Requires qw(JSON::MaybeXS);
 
 use lib ("$FindBin::Bin/lib", "$FindBin::Bin/../lib");
 use Test::Rest;
 use utf8;
 
-eval 'use JSON 2.12';
-plan skip_all => 'Install JSON 2.12 or later to run this test' if ($@);
-
-plan tests => 9;
-
 use_ok 'Catalyst::Test', 'Test::Serialize';
 
 my $json = JSON->new->utf8;
@@ -36,4 +32,16 @@ for ('text/x-json', 'application/json') {
     is_deeply($mres_post->content, $exp, "POST data matches");
 }
 
+{
+    my $t = Test::Rest->new('content_type' => 'application/json');
+    my $json_data = '{ "sushi":"is good for monkey", }';
+    my $mres_post = request($t->post(url => '/monkey_put', data => $json_data));
+    ok( ! $mres_post->is_success, "Got expected failed status due to invalid JSON" );
+
+    my $relaxed_post = request( $t->post(url => "/monkey_json_put", data => $json_data));
+    ok( $relaxed_post->is_success, "Got success due to setting relaxed JSON input" );
+}
+
 1;
+
+done_testing;