Fix for infinite loop bug in blame.
[catagits/Gitalist.git] / t / json_view.t
index b32a0a6..2b68267 100644 (file)
@@ -1,14 +1,18 @@
 #!/usr/bin/env perl
 
 use FindBin qw/$Bin/;
-BEGIN { do "$FindBin::Bin/../script/env" or die $@ }
+BEGIN {
+    my $env = "$FindBin::Bin/../script/env";
+    if (-r $env) {
+        do $env or die $@;
+    }
+}
 
 use strict;
 use warnings;
 use Test::More;
 use HTTP::Request::Common;
-use JSON::Any;
-
+use JSON::XS qw/decode_json encode_json/;
 
 BEGIN {
     $ENV{GITALIST_CONFIG} = $Bin;
@@ -16,27 +20,16 @@ BEGIN {
     use_ok 'Catalyst::Test', 'Gitalist';
 }
 
-my $j = JSON::Any->new;
-
 my $res = request(GET 'http://localhost/repo1', 'Content-Type' => 'application/json');
 is $res->code, 200;
-my $data = $j->decode($res->content);
+my $data = decode_json $res->content;
 is ref($data), 'HASH';
 delete $data->{owner}
   if $data && exists $data->{owner};
 is_deeply $data, {
           'is_bare' => 1,
           '__CLASS__' => 'Gitalist::Git::Repository',
-          'last_change' => '2009-11-12T19:00:34Z',
-          'references' => {
-                            '0710a7c8ee11c73e8098d08f9384c2a839c65e4e' => [
-                                                                            'heads/branch1'
-                                                                          ],
-                            '36c6c6708b8360d7023e8a1649c45bcf9b3bd818' => [
-                                                                            'heads/master',
-                                                                            'tags/0.01'
-                                                                          ]
-                          },
+          'last_change' => '2011-06-05T23:00:44Z',
           'name' => 'repo1',
           'description' => 'some test repository'
         };