Skip to content

Commit

Permalink
Get more output on test failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Jan 18, 2016
1 parent 7222022 commit b12deea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion t/004_public_urls.t
Expand Up @@ -39,7 +39,8 @@ my %route = (
for (keys %route) {
my $res = $test->request( GET "/$_" );
is $res->code, $route{$_},
"response status is $route{$_} for /$_";
"response status is $route{$_} for /$_" or
diag $res->content;
}

my $user = $sch->resultset('User')->create( $test_user_data );
Expand Down

0 comments on commit b12deea

Please sign in to comment.