A workable fix for the resultset multicol update/delete debacle - by default fallback...
[dbsrgits/DBIx-Class.git] / t / count / count_joined.t
index 5f5fa33..139f9cd 100644 (file)
@@ -11,8 +11,7 @@ plan tests => 1;
 
 my $schema = DBICTest->init_schema();
 
-TODO: {
-  local $TODO = 'TODO until we figure out what we really want';
+{
   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");
 }