From: Peter Rabbitson Date: Mon, 17 Nov 2008 00:33:51 +0000 (+0000) Subject: rip away a horribly wrong create_via_update test (will pass when multicreate is merged) X-Git-Tag: v0.08240~233 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=fe8cee09b63206266dba04eba20f6397be6d17a8;p=dbsrgits%2FDBIx-Class.git rip away a horribly wrong create_via_update test (will pass when multicreate is merged) --- diff --git a/t/96multi_create.t b/t/96multi_create.t index b2053b3..e336130 100644 --- a/t/96multi_create.t +++ b/t/96multi_create.t @@ -2,10 +2,11 @@ use strict; use warnings; use Test::More; +use Test::Exception; use lib qw(t/lib); use DBICTest; -plan tests => 70; +plan tests => 69; my $schema = DBICTest->init_schema(); @@ -70,22 +71,24 @@ eval { is($artist->cds->first->tags->count, 1, 'One tag created for CD'); is($artist->cds->first->tags->first->tag, 'rock', 'Tag created correctly'); - # Create via update - add a new CD - $artist->update({ - cds => [ $artist->cds, - { title => 'Yet another CD', - year => 2006, - }, - ], - }); - is(($artist->cds->search({}, { order_by => 'year' }))[0]->title, 'Yet another CD', 'Updated and added another CD'); - - my $newartist = $schema->resultset('Artist')->find_or_create({ name => 'Fred 2'}); - - is($newartist->name, 'Fred 2', 'Retrieved the artist'); }; diag $@ if $@; +throws_ok ( + sub { + # Create via update - add a new CD <--- THIS SHOULD HAVE NEVER WORKED! + $schema->resultset('Artist')->first->update({ + cds => [ + { title => 'Yet another CD', + year => 2006, + }, + ], + }); + }, + qr/Recursive update is not supported over relationships of type multi/, + 'create via update of multi relationships throws an exception' +); + # create over > 1 levels of might_have (A => { might_have => { B => has_many => C } } ) eval { my $artist = $schema->resultset('Artist')->first;