6 $Data::Dumper::Sortkeys = 1;
11 eval "use DBD::SQLite";
12 plan $ENV{DATA_DUMPER_TEST}
14 : ( skip_all => 'Set $ENV{DATA_DUMPER_TEST} to run this test' );
20 my $schema = DBICTest->init_schema();
21 my $rs = $schema->resultset('CD')->search({
22 'artist.name' => 'We Are Goth',
23 'liner_notes.notes' => 'Kill Yourself!',
25 join => [ qw/artist liner_notes/ ],
30 $rs = $schema->resultset('CD')->search({
31 'artist.name' => 'We Are Goth',
32 'liner_notes.notes' => 'Kill Yourself!',
34 join => [ qw/artist liner_notes/ ],
37 cmp_ok( $rs->count(), '==', 1, "Single record in after death with dumper");