1 BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
10 my $schema = DBICTest->init_schema();
12 my $artist = $schema->resultset('Artist')->find(1);
13 my $artist_cds = $artist->search_related('cds');
15 my $cover_band = $artist->copy ({name => $artist->name . '_cover' });
17 my $cover_cds = $cover_band->search_related('cds');
18 cmp_ok($cover_band->id, '!=', $artist->id, 'ok got new column id...');
19 is($cover_cds->count, $artist_cds->count, 'duplicated rows count ok');
23 $cover_band->search_related('twokeys')->count,
24 $artist->search_related('twokeys')->count,
25 'duplicated multiPK ok'
28 #and check copying a few relations away
29 cmp_ok($cover_cds->search_related('tags')->count, '==',
30 $artist_cds->search_related('tags')->count , 'duplicated count ok');
33 # check from the other side
34 my $cd = $schema->resultset('CD')->find(1);
35 my $dup_cd = $cd->copy ({ title => 'ha!' });
37 $dup_cd->search_related('twokeys')->count,
38 $cd->search_related('twokeys')->count,
39 'duplicated multiPK ok'