X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fcdbi%2Ftestlib%2FDBIC%2FTest%2FSQLite.pm;h=88d61efaa3af847d179d57e5ccdb89249d4cbd55;hb=d9bd5195;hp=3934ce6e7ca1ff9bd6cdf46825447921d6dc6219;hpb=aea59b74d807ee65b319f3c1f84709157e12926b;p=dbsrgits%2FDBIx-Class.git diff --git a/t/cdbi/testlib/DBIC/Test/SQLite.pm b/t/cdbi/testlib/DBIC/Test/SQLite.pm index 3934ce6..88d61ef 100644 --- a/t/cdbi/testlib/DBIC/Test/SQLite.pm +++ b/t/cdbi/testlib/DBIC/Test/SQLite.pm @@ -34,6 +34,16 @@ table, and tie it to the class. use strict; use warnings; +use Test::More; + +use lib 't/lib'; +use DBICTest; + +BEGIN { + eval { require DBIx::Class::CDBICompat } + or plan skip_all => 'Class::DBI required for this test'; +} + use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/CDBICompat Core DB/);