From: Dagfinn Ilmari Mannsåker Date: Sat, 20 Jan 2018 20:47:54 +0000 (+0000) Subject: Fix skip count for MySQL non-InnoDB tests X-Git-Tag: 0.07048~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-Schema-Loader.git;a=commitdiff_plain;h=0fccc53b6fe709fd05f739fa5ffa17fb617dd753 Fix skip count for MySQL non-InnoDB tests Commit 20d44ba70154a47099b1c9d9ffa58af75d55c28c stopped running the col_accessor_map test on each rescan, and there is one in the skip_rel block, so deduct the count from the number of tests skipped. --- diff --git a/Changes b/Changes index 08be6ed..55d10b7 100644 --- a/Changes +++ b/Changes @@ -3,6 +3,7 @@ Revision history for Perl extension DBIx::Class::Schema::Loader - Fix for PostgreSQL enums not in the schema search path (RT#123234) - Fix 'default now()' test for PostgreSQL v10 - Work around incompatible change in Hash::Merge (GH#16) + - Fix skip count for non-InnoDB MySQL test 0.07047 2017-05-26 - Avoid upcoming DBIC warning on implicit SELECT * invocation diff --git a/t/lib/dbixcsl_common_tests.pm b/t/lib/dbixcsl_common_tests.pm index bff0999..1d425bb 100644 --- a/t/lib/dbixcsl_common_tests.pm +++ b/t/lib/dbixcsl_common_tests.pm @@ -634,7 +634,7 @@ qr/\n__PACKAGE__->load_components\("TestSchemaComponent", "\+TestSchemaComponent 'is_nullable=1 detection'; SKIP: { - skip $self->{skip_rels}, 149 if $self->{skip_rels}; + skip $self->{skip_rels}, 143 if $self->{skip_rels}; my $moniker3 = $monikers->{loader_test3}; my $class3 = $classes->{loader_test3};