X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fprefetch%2Fdouble_prefetch.t;h=1e5ff10448dfae9d67c70179d20f78edae8ee583;hb=fcf32d04540e2c67625641b0bc004111a7d90252;hp=f16ace689d55cf1ee432fb092087ed7d942439f2;hpb=3d98c75e2c45cbd5ddd995cbeb48810f6ad7e1ca;p=dbsrgits%2FDBIx-Class.git diff --git a/t/prefetch/double_prefetch.t b/t/prefetch/double_prefetch.t index f16ace6..1e5ff10 100644 --- a/t/prefetch/double_prefetch.t +++ b/t/prefetch/double_prefetch.t @@ -1,15 +1,13 @@ use warnings; +use strict; use Test::More; -use Test::Exception; use lib qw(t/lib); use DBIC::SqlMakerTest; use DBICTest; my $schema = DBICTest->init_schema(); -plan tests => 1; - # While this is a rather GIGO case, make sure it behaves as pre-103, # as it may result in hard-to-track bugs my $cds = $schema->resultset('Artist') @@ -33,3 +31,5 @@ is_same_sql( LEFT JOIN cd cd ON cd.cdid = single_track_2.cd )', ); + +done_testing;