From: Marcus Ramberg Date: Fri, 27 Jan 2006 17:22:56 +0000 (+0000) Subject: oops, some more test failures X-Git-Tag: v0.05005~88 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=48e8a885e1b40a0c141c764fa5b99fe6f2e39d0d;p=dbsrgits%2FDBIx-Class.git oops, some more test failures --- diff --git a/t/cdbi-t/04-lazy.t b/t/cdbi-t/04-lazy.t index b9e3370..69b3549 100644 --- a/t/cdbi-t/04-lazy.t +++ b/t/cdbi-t/04-lazy.t @@ -1,16 +1,17 @@ use strict; use Test::More; -BEGIN { - eval "use DBIx::Class::CDBICompat;"; - plan $@ ? (skip_all => 'Class::Trigger and DBIx::ContextualFetch required') : (tests=> 24); -} #---------------------------------------------------------------------- # Test lazy loading #---------------------------------------------------------------------- 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 => 25); } diff --git a/t/cdbi-t/22-self_referential.t b/t/cdbi-t/22-self_referential.t index c2ce6e1..c937746 100644 --- a/t/cdbi-t/22-self_referential.t +++ b/t/cdbi-t/22-self_referential.t @@ -2,7 +2,7 @@ use Test::More; BEGIN { eval "use DBIx::Class::CDBICompat;"; - plan $@ ? (skip_all => 'Class::Trigger and DBIx::ContextualFetch required') : (tests=> 24); + plan $@ ? (skip_all => 'Class::Trigger and DBIx::ContextualFetch required') : (tests=> 2); } use strict; diff --git a/t/cdbi-t/98-failure.t b/t/cdbi-t/98-failure.t index d013d22..4521b9a 100644 --- a/t/cdbi-t/98-failure.t +++ b/t/cdbi-t/98-failure.t @@ -1,18 +1,18 @@ use strict; use Test::More; -BEGIN { - eval "use DBIx::Class::CDBICompat;"; - plan $@ ? (skip_all => 'Class::Trigger and DBIx::ContextualFetch required') : (tests=> 24); -} - #---------------------------------------------------------------------- # Test database failures #---------------------------------------------------------------------- BEGIN { - eval "use DBD::SQLite"; - plan $@ ? (skip_all => 'needs DBD::SQLite for testing') : (tests => 7); + 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 => 7); } use lib 't/testlib';