X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fresultset%2Fbind_attr.t;h=7f25d99b17fea20eb98c3655363c8ae7267cde92;hb=06278456a950ad6e8bf9920f77e6d212f0d8b474;hp=d93dcd1b5267f36e1902ba9a0e60a4ea8f0c2ea7;hpb=5e7249645ea75d5a9d25f1fdf8a42e0536b03f4e;p=dbsrgits%2FDBIx-Class.git diff --git a/t/resultset/bind_attr.t b/t/resultset/bind_attr.t index d93dcd1..7f25d99 100644 --- a/t/resultset/bind_attr.t +++ b/t/resultset/bind_attr.t @@ -3,8 +3,7 @@ use warnings; use Test::More; use lib qw(t/lib); -use DBICTest; -use DBIC::SqlMakerTest; +use DBICTest ':DiffSQL'; my $schema = DBICTest->init_schema; @@ -16,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 }, @@ -37,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 ?',