6 $Data::Dumper::Sortkeys = 1;
11 my $schema = DBICTest->init_schema();
12 my $rs = $schema->resultset('CD')->search({
13 'artist.name' => 'We Are Goth',
14 'liner_notes.notes' => 'Kill Yourself!',
16 join => [ qw/artist liner_notes/ ],
21 $rs = $schema->resultset('CD')->search({
22 'artist.name' => 'We Are Goth',
23 'liner_notes.notes' => 'Kill Yourself!',
25 join => [ qw/artist liner_notes/ ],
28 cmp_ok( $rs->count(), '==', 1, "Single record in after death with dumper");