11 my $schema = DBICTest->init_schema();
16 my $artist = $schema->resultset ('Artist')->search ({}, { rows => 1})->single; # braindead sqlite
17 my $cd = $schema->resultset ('CD')->create ({
19 title => 'Get in order',
28 lives_ok (sub { $cd->delete}, "Cascade delete on ordered has_many doesn't bomb");