TODOify sqla-dependent tests
[dbsrgits/DBIx-Class.git] / t / count / count_joined.t
index 5f5fa33..992d23b 100644 (file)
@@ -12,7 +12,7 @@ plan tests => 1;
 my $schema = DBICTest->init_schema();
 
 TODO: {
-  local $TODO = 'TODO until we figure out what we really want';
+  local $TODO = 'Needs -paren fixes in SQLA before it can work';
   my $cds = $schema->resultset("CD")->search({ cdid => 1 }, { join => { cd_to_producer => 'producer' } });
   is($cds->count, 1, "extra joins do not explode single entity count");
 }