From: Peter Rabbitson Date: Sat, 25 Oct 2014 12:49:02 +0000 (+0200) Subject: Blacklist certain trial versions of DBD::SQLite in testing X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=83e81c2d78765ee3f7dacc2f9e5982f93e8a15e8;p=dbsrgits%2FDBIx-Class-Historic.git Blacklist certain trial versions of DBD::SQLite in testing --- diff --git a/t/752sqlite.t b/t/752sqlite.t index b793543..1c4e7c7 100644 --- a/t/752sqlite.t +++ b/t/752sqlite.t @@ -144,6 +144,11 @@ $row->discard_changes; is ($row->rank, 'abc', 'proper rank inserted into database'); # and make sure we do not lose actual bigints +SKIP: { + +skip "Not testing bigint handling on known broken DBD::SQLite trial versions", 1 + if modver_gt_or_eq_and_lt( 'DBD::SQLite', '1.45', '1.45_03' ); + { package DBICTest::BigIntArtist; use base 'DBICTest::Schema::Artist'; @@ -308,7 +313,8 @@ SKIP: { } is_deeply (\@w, [], "No mismatch warnings on bigint operations ($v_desc)" ); -} + +}} done_testing;