From: Dagfinn Ilmari Mannsåker Date: Tue, 29 Nov 2011 16:33:15 +0000 (+0000) Subject: Skip find test rather than marking it TODO X-Git-Tag: v0.02002~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=779843115880e1daf4c4454944c8d2673fef7daf;p=dbsrgits%2FDBIx-Class-InflateColumn-IP.git Skip find test rather than marking it TODO With newer DBD::SQLite it fails in a fatal manner. --- diff --git a/t/01-ip.t b/t/01-ip.t index dddd523..82ff341 100644 --- a/t/01-ip.t +++ b/t/01-ip.t @@ -13,8 +13,8 @@ my $localhost = $host_rs->find('localhost'); isa_ok($localhost->address, 'NetAddr::IP', 'numeric address inflated to right class'); is($localhost->address, '127.0.0.1/32', 'numeric address correctly inflated'); -TODO: { - local $TODO = "DBIx::Class doesn't support find by object yet"; +SKIP: { + skip "DBIx::Class doesn't support find by object yet" => 1; $localhost = $host_rs->find(NetAddr::IP->new('127.0.0.1'), { key => 'address' });