--- t/86sqlt.t 2009-02-11 00:33:56.000000000 +0100 +++ t/86sqlt.t.verbose 2009-03-22 18:52:18.000000000 +0100 @@ -6,7 +6,7 @@ use DBICTest; eval "use SQL::Translator"; -plan skip_all => 'SQL::Translator required' if $@; +plan skip_all => "SQL::Translator required: $@" if $@; my $schema = DBICTest->init_schema; --- t/94versioning.t 2009-02-11 00:33:56.000000000 +0100 +++ t/94versioning.t.verbose 2009-03-22 18:52:47.000000000 +0100 @@ -7,7 +7,7 @@ BEGIN { eval "use DBD::SQLite; use SQL::Translator 0.09003;"; plan $@ - ? ( skip_all => 'needs DBD::SQLite and SQL::Translator 0.09003 for testing' ) + ? ( skip_all => "needs DBD::SQLite and SQL::Translator 0.09003 for testing: $@" ) : ( tests => 6 ); } --- t/cdbi-t/03-subclassing.t 2009-02-11 00:33:49.000000000 +0100 +++ t/cdbi-t/03-subclassing.t.verbose 2009-03-22 18:53:24.000000000 +0100 @@ -8,11 +8,11 @@ BEGIN { eval "use DBIx::Class::CDBICompat;"; if ($@) { - plan (skip_all => 'Class::Trigger and DBIx::ContextualFetch required'); + plan (skip_all => "Class::Trigger and DBIx::ContextualFetch required: $@"); next; } eval "use DBD::SQLite"; - plan $@ ? (skip_all => 'needs DBD::SQLite for testing') : (tests => 6); + plan $@ ? (skip_all => "needs DBD::SQLite for testing: $@") : (tests => 6); } use lib 't/testlib';