From: Peter Rabbitson Date: Mon, 17 Nov 2008 11:04:54 +0000 (+0000) Subject: Extend might_have test with ideas from zby X-Git-Tag: v0.08240~227 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e5b05576d0be9356f8e1bbcb37aec36d70390060;hp=2f926160b1fc56b4943ba229f23940ccf8468001;p=dbsrgits%2FDBIx-Class.git Extend might_have test with ideas from zby --- diff --git a/t/96multi_create.t b/t/96multi_create.t index 9de6454..e202c59 100644 --- a/t/96multi_create.t +++ b/t/96multi_create.t @@ -6,7 +6,7 @@ use Test::Exception; use lib qw(t/lib); use DBICTest; -plan tests => 86; +plan tests => 89; my $schema = DBICTest->init_schema(); @@ -188,9 +188,11 @@ eval { isa_ok ($cd->artwork, 'DBICTest::Artwork', 'Artwork created'); # this test might look weird, but it failed at one point, keep it there - is ($cd->artwork->images->count, 2, 'Correct artwork image count via the new object'); + my $art_obj = $cd->artwork; + ok ($art_obj->has_column_loaded ('cd_id'), 'PK/FK present on artwork object'); + is ($art_obj->images->count, 2, 'Correct artwork image count via the new object'); is_deeply ( - [ sort $cd->artwork->images->get_column ('name')->all ], + [ sort $art_obj->images->get_column ('name')->all ], [ 'recursive descent', 'tail packing' ], 'Images named correctly in objects', ); @@ -231,10 +233,12 @@ eval { isa_ok ($track->lyrics, 'DBICTest::Lyrics', 'Lyrics created'); # this test might look weird, but it was failing at one point, keep it there - is ($track->lyrics->lyric_versions->count, 2, 'Correct lyric versions count via the new object'); - + my $lyric_obj = $track->lyrics; + ok ($lyric_obj->has_column_loaded ('lyric_id'), 'PK present on lyric object'); + ok ($lyric_obj->has_column_loaded ('track_id'), 'FK present on lyric object'); + is ($lyric_obj->lyric_versions->count, 2, 'Correct lyric versions count via the new object'); is_deeply ( - [ sort $track->lyrics->lyric_versions->get_column ('text')->all ], + [ sort $lyric_obj->lyric_versions->get_column ('text')->all ], [ 'The color black', 'The colour black' ], 'Lyrics text in objects matches', );