X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fprefetch%2Ffalse_colvalues.t;h=4520bf4b0c9434684a861a91993fcfa0d92e952e;hb=aa1d8a8751baf1e4c06b43f38ff9e02cdea51e6a;hp=b3b2ef6893dcd0ea857ea44aeaabcb7af857cd8d;hpb=f4e13e1312bfdc2e1f6f0e2dde54779452570e3b;p=dbsrgits%2FDBIx-Class.git diff --git a/t/prefetch/false_colvalues.t b/t/prefetch/false_colvalues.t index b3b2ef6..4520bf4 100644 --- a/t/prefetch/false_colvalues.t +++ b/t/prefetch/false_colvalues.t @@ -2,6 +2,7 @@ use warnings; use strict; use Test::More; +use Test::Deep; use lib qw(t/lib); use DBICTest; @@ -32,7 +33,7 @@ $schema->storage->debug(1); my $cd = $schema->resultset('CD')->search( {}, { prefetch => 'artist' })->next; -is_deeply +cmp_deeply { $cd->get_columns }, { artist => 0, @@ -45,7 +46,7 @@ is_deeply 'Expected CD columns present', ; -is_deeply +cmp_deeply { $cd->artist->get_columns }, { artistid => 0,