X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F80unique.t;h=8bd7e2cd0189a74a6463b0fec2740cb6ea63b77a;hb=1acfef8e202edc99992ee59a8d87d1d72ad8e362;hp=6108f289983d6c46a5704d95f522eefbbc7128c9;hpb=d180c0f33c2fbbe3a20f994b1c61703c67128e6e;p=dbsrgits%2FDBIx-Class.git diff --git a/t/80unique.t b/t/80unique.t index 6108f28..8bd7e2c 100644 --- a/t/80unique.t +++ b/t/80unique.t @@ -7,7 +7,7 @@ use DBICTest; my $schema = DBICTest->init_schema(); -plan tests => 45; +plan tests => 49; # Check the defined unique constraints is_deeply( @@ -183,3 +183,30 @@ is($row->baz, 3, 'baz is correct'); ok($cd->in_storage, 'find correctly grepped the key across a relationship'); is($cd->cdid, 1, 'cdid is correct'); } + +# Test update_or_new +{ + my $cd1 = $schema->resultset('CD')->update_or_new( + { + artist => $artistid, + title => "SuperHits $$", + year => 2007, + }, + { key => 'cd_artist_title' } + ); + + ok(!$cd1->in_storage, 'CD is not in storage yet after update_or_new'); + $cd1->insert; + ok($cd1->in_storage, 'CD got added to strage after update_or_new && insert'); + + my $cd2 = $schema->resultset('CD')->update_or_new( + { + artist => $artistid, + title => "SuperHits $$", + year => 2008, + }, + { key => 'cd_artist_title' } + ); + ok($cd2->in_storage, 'Updating year using update_or_new was successful'); + is($cd2->id, $cd1->id, 'Got the same CD using update_or_new'); +} \ No newline at end of file