X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fprefetch%2Fdouble_prefetch.t;h=d4b50aa24d515555dedf426d4f833d780a0bdc67;hb=02a2db55ba0471379640a89ba5d9d128b5486270;hp=efc9d2dff18cb33723d1ca8170db6c533649ff90;hpb=a0034ff6946ef2782a34d5c1f333eb448833e46f;p=dbsrgits%2FDBIx-Class.git diff --git a/t/prefetch/double_prefetch.t b/t/prefetch/double_prefetch.t index efc9d2d..d4b50aa 100644 --- a/t/prefetch/double_prefetch.t +++ b/t/prefetch/double_prefetch.t @@ -1,14 +1,13 @@ use warnings; +use strict; use Test::More; use lib qw(t/lib); -use DBIC::SqlMakerTest; use DBICTest; +use DBIC::SqlMakerTest; 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') @@ -32,3 +31,5 @@ is_same_sql( LEFT JOIN cd cd ON cd.cdid = single_track_2.cd )', ); + +done_testing;