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' );
19 use_ok('DBICTest::HelperRels');
22 my $rs = DBICTest::CD->search(
23 { 'artist.name' => 'We Are Goth',
24 'liner_notes.notes' => 'Kill Yourself!' },
25 { join => [ qw/artist liner_notes/ ] });
29 $rs = DBICTest::CD->search(
30 { 'artist.name' => 'We Are Goth',
31 'liner_notes.notes' => 'Kill Yourself!' },
32 { join => [ qw/artist liner_notes/ ] });
34 cmp_ok( $rs + 0, '==', 1, "Single record in after death with dumper");