From: Peter Rabbitson Date: Tue, 9 Jun 2009 22:31:55 +0000 (+0000) Subject: Todoify DT in search deflation test until after 0.09 X-Git-Tag: v0.08106~19^2~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b2f51815e18753c68e65785eef19ca73478b4e9b;p=dbsrgits%2FDBIx-Class.git Todoify DT in search deflation test until after 0.09 --- diff --git a/t/89inflate_datetime.t b/t/89inflate_datetime.t index 19363d2..d165c33 100644 --- a/t/89inflate_datetime.t +++ b/t/89inflate_datetime.t @@ -29,13 +29,17 @@ isa_ok($event->starts_at, 'DateTime', 'DateTime returned'); my $starts = $event->starts_at; is("$starts", '2006-04-25T22:24:33', 'Correct date/time'); -ok(my $row = - $schema->resultset('Event')->search({ starts_at => $starts })->single); -is(eval { $row->id }, 1, 'DT in search'); +TODO: { + local $TODO = "We can't do this yet before 0.09" if DBIx::Class->VERSION < 0.09; -ok($row = - $schema->resultset('Event')->search({ starts_at => { '>=' => $starts } })->single); -is(eval { $row->id }, 1, 'DT in search with condition'); + ok(my $row = + $schema->resultset('Event')->search({ starts_at => $starts })->single); + is(eval { $row->id }, 1, 'DT in search'); + + ok($row = + $schema->resultset('Event')->search({ starts_at => { '>=' => $starts } })->single); + is(eval { $row->id }, 1, 'DT in search with condition'); +} # create using DateTime my $created = $schema->resultset('Event')->create({