From: Matt S Trout Date: Mon, 9 Jul 2007 20:05:30 +0000 (+0000) Subject: failing test for multi-create bug reported by irc:bits X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e5dddc052141584da501243ae42d53f522a5cc69;p=dbsrgits%2FDBIx-Class-Historic.git failing test for multi-create bug reported by irc:bits --- diff --git a/t/96multi_create.t b/t/96multi_create.t index 4f32e68..76fa85c 100644 --- a/t/96multi_create.t +++ b/t/96multi_create.t @@ -120,3 +120,10 @@ CREATE_RELATED2 :{ ok( $track && ref $track eq 'DBICTest::Track', 'Got Expected Track Class'); } } + +my $cdp = $schema->resultset('CD_to_Producer')->create({ + cd => { artist => 1, title => 'foo', year => 2000 }, + producer => { name => 'jorge' } + }); + +ok($cdp, 'join table record created ok');