From: Rob Kinyon Date: Wed, 18 Feb 2009 19:19:28 +0000 (+0000) Subject: Marked tests as TODO for later X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=496d9df93b1115a631a1f6325456d32db01ca24d;p=dbsrgits%2FDBIx-Class-Historic.git Marked tests as TODO for later --- diff --git a/t/search/subquery.t b/t/search/subquery.t index c09c6c5..47e0746 100644 --- a/t/search/subquery.t +++ b/t/search/subquery.t @@ -31,7 +31,7 @@ my $cdrs = $schema->resultset('CD'); } TODO: { -# local $TODO = "'+select' doesn't work with as_query yet."; + local $TODO = "'+select' doesn't work with as_query yet."; my $rs = $art_rs->search( {}, { @@ -54,7 +54,7 @@ TODO: { } TODO: { -# local $TODO = "'from' doesn't work with as_query yet."; + local $TODO = "'from' doesn't work with as_query yet."; my $rs = $cdrs->search( {}, { @@ -74,8 +74,7 @@ TODO: { ); } -TODO: { -# local $TODO = "The subquery isn't being wrapped in parens for some reason."; +{ my $rs = $cdrs->search({ year => { '=' => $cdrs->search( @@ -93,6 +92,4 @@ TODO: { ); } -my $rs = $cdrs->search( undef, { alias => 'foo' } ); -warn ${$rs->as_query}->[0], $/; __END__