Fix skip count for MySQL non-InnoDB tests
Dagfinn Ilmari Mannsåker [Sat, 20 Jan 2018 20:47:54 +0000 (20:47 +0000)]
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.

Changes
t/lib/dbixcsl_common_tests.pm

diff --git a/Changes b/Changes
index 08be6ed..55d10b7 100644 (file)
--- 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
index bff0999..1d425bb 100644 (file)
@@ -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};