From: Brandon Black Date: Mon, 30 Jan 2006 22:16:51 +0000 (+0000) Subject: mysql test was broken for mysqlds that do not support innodb at all, fixed now X-Git-Tag: 0.03000~31 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d3c6d0b903d122b298aac4e674907eda74dee62b;hp=507034ad2c6f400a01d60257b4c31d4f01e1219e;p=dbsrgits%2FDBIx-Class-Schema-Loader.git mysql test was broken for mysqlds that do not support innodb at all, fixed now --- diff --git a/t/11mysql_common.t b/t/11mysql_common.t index 1929a68..bc6f413 100644 --- a/t/11mysql_common.t +++ b/t/11mysql_common.t @@ -12,7 +12,7 @@ my $skip_rels_msg = 'You need to set the DBICTEST_MYSQL_INNODB environment varia my $tester = dbixcsl_common_tests->new( vendor => 'Mysql', auto_inc_pk => 'INTEGER NOT NULL PRIMARY KEY AUTO_INCREMENT', - innodb => q{Engine='InnoDB'}, + innodb => $test_innodb ? q{Engine=InnoDB} : 0, dsn => $dsn, user => $user, password => $password,