Remove confusing code introduced in 8fc4291e
[dbsrgits/DBIx-Class.git] / t / resultset / bind_attr.t
index 3d8d1cd..a636cfc 100644 (file)
@@ -1,11 +1,11 @@
+BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
+
 use strict;
 use warnings;
 
 use Test::More;
-use lib qw(t/lib);
-use DBIC::SqlMakerTest;
 
-use_ok('DBICTest');
+use DBICTest ':DiffSQL';
 
 my $schema = DBICTest->init_schema;
 
@@ -17,8 +17,6 @@ my $where_bind = {
 my $rs;
 
 {
-    local $TODO = 'bind args order needs fixing (semifor)';
-
     # First, the simple cases...
     $rs = $schema->resultset('Artist')->search(
             { artistid => 1 },
@@ -38,7 +36,6 @@ my $rs;
     is ( $rs->count, 1, 'where/bind last' );
 
     # and the complex case
-    local $TODO = 'bind args order needs fixing (semifor)';
     $rs = $schema->resultset('CustomSql')->search({}, { bind => [ 1999 ] })
         ->search({ 'artistid' => 1 }, {
             where => \'title like ?',