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