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