X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fprefetch%2Ffalse_colvalues.t;h=5213e73afca9c2f44694f2bb5a25104172fdf841;hb=a5f2ccb49689cf2603ea5614b231088cb520734f;hp=b3b2ef6893dcd0ea857ea44aeaabcb7af857cd8d;hpb=f4e13e1312bfdc2e1f6f0e2dde54779452570e3b;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/prefetch/false_colvalues.t b/t/prefetch/false_colvalues.t index b3b2ef6..5213e73 100644 --- a/t/prefetch/false_colvalues.t +++ b/t/prefetch/false_colvalues.t @@ -2,26 +2,17 @@ use warnings; use strict; use Test::More; +use Test::Deep; use lib qw(t/lib); use DBICTest; -my $schema = DBICTest->init_schema( - no_populate => 1, -); +my $schema = DBICTest->init_schema( no_populate => 1 ); $schema->resultset('CD')->create({ - cdid => 0, - artist => { - artistid => 0, - name => '', - rank => 0, - charfield => 0, - }, - title => '', - year => 0, - genreid => 0, - single_track => 0, + cdid => 0, title => '', year => 0, genreid => 0, single_track => 0, artist => { + artistid => 0, name => '', rank => 0, charfield => 0, + }, }); my $orig_debug = $schema->storage->debug; @@ -32,27 +23,15 @@ $schema->storage->debug(1); my $cd = $schema->resultset('CD')->search( {}, { prefetch => 'artist' })->next; -is_deeply +cmp_deeply { $cd->get_columns }, - { - artist => 0, - cdid => 0, - genreid => 0, - single_track => 0, - title => '', - year => 0, - }, + { artist => 0, cdid => 0, genreid => 0, single_track => 0, title => '', year => 0 }, 'Expected CD columns present', ; -is_deeply +cmp_deeply { $cd->artist->get_columns }, - { - artistid => 0, - charfield => 0, - name => "", - rank => 0, - }, + { artistid => 0, charfield => 0, name => "", rank => 0 }, 'Expected Artist columns present', ;