X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fresultset%2Fbind_attr.t;h=7f25d99b17fea20eb98c3655363c8ae7267cde92;hb=a5a7bb733a940db710b7408508374833683a2e79;hp=3d8d1cd11709e291d54ede11b3abceb9ee420a86;hpb=4ca1fd6fb90a85f5138d11f580394025aa20ea4a;p=dbsrgits%2FDBIx-Class.git diff --git a/t/resultset/bind_attr.t b/t/resultset/bind_attr.t index 3d8d1cd..7f25d99 100644 --- a/t/resultset/bind_attr.t +++ b/t/resultset/bind_attr.t @@ -3,9 +3,7 @@ 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 +15,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 +34,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 ?',