The functionality introduced in 7ad80222 requires a certain CDBI
Peter Rabbitson [Fri, 26 Sep 2014 02:22:41 +0000 (04:22 +0200)]
Skip it on older versions (wow - people *do* run these in the wild)
https://metacpan.org/source/TMTM/Class-DBI-v3.0.5/Changes#L6

t/cdbi/71_column_object.t

index cc998c3..a97960f 100644 (file)
@@ -1,12 +1,16 @@
 use strict;
 use warnings;
 
+use Test::More;
+use lib 't/cdbi/testlib';
+
 # Columns in CDBI could be defined as Class::DBI::Column objects rather than
 # or as well as with __PACKAGE__->columns();
+BEGIN {
+  eval { require Class::DBI and Class::DBI->VERSION('3.0.5') }
+    or plan skip_all => 'The tested functionality is only available in Class::DBI >= 3.0.5'
+}
 
-use Test::More;
-
-use lib 't/cdbi/testlib';
 use ColumnObject;
 
 ok(ColumnObject->can('db_Main'), 'set_db()');