Skip to content

Commit

Permalink
diag parsed structures under verbose testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ruz committed Jan 26, 2011
1 parent c33630e commit cd8346e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions t/parse.t
Expand Up @@ -15,6 +15,10 @@ foreach my $spec (qw(0.6 0.7)) {
ok($got, "parsed '$file' in $version version mode");
my $expected = LoadFile( substr($file, 0, -3) .'yaml' );
is_deeply($got, $expected, 'data matches expected');
if ( $ENV{'TEST_VERBOSE'} ) {
require Data::Dumper;
diag( Data::Dumper::Dumper( $got ) );
}
}
}
}
Expand Down

0 comments on commit cd8346e

Please sign in to comment.