9 my $schema = DBICTest->init_schema();
14 my $cds_rs_2000 = $schema->resultset('CD')->search( { year => 2000 });
15 my $year2kcds_rs = $schema->resultset('Year2000CDs');
17 is($cds_rs_2000->count, $year2kcds_rs->count, 'View Year2000CDs sees all CDs in year 2000');
21 my $cds_rs_1999 = $schema->resultset('CD')->search( { year => 1999 });
22 my $year1999cds_rs = $schema->resultset('Year1999CDs');
24 is($cds_rs_1999->count, $year1999cds_rs->count, 'View Year1999CDs sees all CDs in year 1999');