1 BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
8 $Data::Dumper::Sortkeys = 1;
13 my $schema = DBICTest->init_schema();
14 my $rs = $schema->resultset('CD')->search({
15 'artist.name' => 'We Are Goth',
16 'liner_notes.notes' => 'Kill Yourself!',
18 join => [ qw/artist liner_notes/ ],
23 $rs = $schema->resultset('CD')->search({
24 'artist.name' => 'We Are Goth',
25 'liner_notes.notes' => 'Kill Yourself!',
27 join => [ qw/artist liner_notes/ ],
30 cmp_ok( $rs->count(), '==', 1, "Single record in after death with dumper");