X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcdbi%2F14-might_have.t;h=a02f9873ed5626aa019c0a89b963b09129cb389e;hb=8273e845426f0187b4ad6c4a1b42286fa09a648f;hp=a8c163fda4d244daae3ff378b4dca63c96fc14ea;hpb=6a3bf2519832866d037740c5fb22341dad6f8bb3;p=dbsrgits%2FDBIx-Class.git diff --git a/t/cdbi/14-might_have.t b/t/cdbi/14-might_have.t index a8c163f..a02f987 100644 --- a/t/cdbi/14-might_have.t +++ b/t/cdbi/14-might_have.t @@ -5,10 +5,8 @@ BEGIN { eval "use DBIx::Class::CDBICompat;"; if ($@) { plan (skip_all => 'Class::Trigger and DBIx::ContextualFetch required'); - next; } - eval "use DBD::SQLite"; - plan $@ ? (skip_all => 'needs DBD::SQLite for testing') : (tests => 22); + plan tests => 22; } use lib 't/cdbi/testlib'; @@ -64,7 +62,7 @@ Film->create_test_film; $blurb = Blurb->retrieve('Bad Taste'); is $blurb, undef, "Blurb has gone"; } - + } {