From: Yuval Kogman Date: Fri, 1 Aug 2008 00:37:35 +0000 (+0000) Subject: sqlfairy is also needed for testing X-Git-Tag: v0.900201~64 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f020d600fbf5fa9f5007ad81dc0c736c8bed6d99;p=dbsrgits%2FDBIx-Class-Journal.git sqlfairy is also needed for testing --- diff --git a/t/01test.t b/t/01test.t index 33301a5..228ccbe 100644 --- a/t/01test.t +++ b/t/01test.t @@ -7,9 +7,9 @@ use DBICTest; use Data::Dumper; BEGIN { - eval "use DBD::SQLite"; + eval "use DBD::SQLite; use SQL::Translator"; plan $@ - ? ( skip_all => 'needs DBD::SQLite for testing' ) + ? ( skip_all => 'needs DBD::SQLite and SQL::Translator for testing' ) : ( tests => 21 ); } diff --git a/t/02noautodeploy.t b/t/02noautodeploy.t index b8f0328..80c0965 100644 --- a/t/02noautodeploy.t +++ b/t/02noautodeploy.t @@ -7,10 +7,10 @@ use DBICTest; use Data::Dumper; BEGIN { - eval "use DBD::SQLite"; + eval "use DBD::SQLite; use SQL::Translator"; plan $@ - ? ( skip_all => 'needs DBD::SQLite for testing' ) - : ( 'no_plan' ); + ? ( skip_all => 'needs DBD::SQLite and SQL::Translator for testing' ) + : ( tests => 21 ); } my $schema = DBICTest->init_schema(no_populate => 1, no_deploy => 1);