You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
perl-DBIx-Class/verbose.patch

39 lines
1.3 KiB

--- t/86sqlt.t.orig 2008-04-09 18:38:26.386901609 -0700
+++ t/86sqlt.t 2008-04-09 18:38:42.825891026 -0700
@@ -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.orig 2008-04-09 18:40:14.843894626 -0700
+++ t/94versioning.t 2008-04-09 18:40:29.297893113 -0700
@@ -7,7 +7,7 @@
BEGIN {
eval "use DBD::SQLite; use SQL::Translator 0.09;";
plan $@
- ? ( skip_all => 'needs DBD::SQLite and SQL::Translator 0.09 for testing' )
+ ? ( skip_all => "needs DBD::SQLite and SQL::Translator 0.09 for testing: $@" )
: ( tests => 6 );
}
--- t/cdbi-t/03-subclassing.t.orig 2008-04-09 19:04:38.142892256 -0700
+++ t/cdbi-t/03-subclassing.t 2008-04-09 19:05:00.557893935 -0700
@@ -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';