Introduce GOVERNANCE document and empty RESOLUTIONS file.
[dbsrgits/DBIx-Class.git] / t / prefetch / double_prefetch.t
index efc9d2d..2942d23 100644 (file)
@@ -1,13 +1,13 @@
+BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
+
 use warnings;
+use strict;
 
 use Test::More;
-use lib qw(t/lib);
-use DBIC::SqlMakerTest;
-use DBICTest;
 
-my $schema = DBICTest->init_schema();
+use DBICTest ':DiffSQL';
 
-plan tests => 1;
+my $schema = DBICTest->init_schema();
 
 # While this is a rather GIGO case, make sure it behaves as pre-103,
 # as it may result in hard-to-track bugs
@@ -32,3 +32,5 @@ is_same_sql(
       LEFT JOIN cd cd ON cd.cdid = single_track_2.cd
   )',
 );
+
+done_testing;