From: Dagfinn Ilmari Mannsåker Date: Mon, 19 Jan 2015 20:31:12 +0000 (+0000) Subject: Enable soft_commit with DBD::Firebird as well X-Git-Tag: 0.07043~24 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=786d242ed5317ed16e42ad0dd90fad9477263500;p=dbsrgits%2FDBIx-Class-Schema-Loader.git Enable soft_commit with DBD::Firebird as well It was accidentally only enabled for DBD::InterBase in 4fb2971c. --- diff --git a/t/10_09firebird_common.t b/t/10_09firebird_common.t index 1a044d1..69611a7 100644 --- a/t/10_09firebird_common.t +++ b/t/10_09firebird_common.t @@ -22,7 +22,7 @@ for (qw(FIREBIRD FIREBIRD_ODBC FIREBIRD_INTERBASE)) { $dsns{$_}{user} = $ENV{"DBICTEST_${_}_USER"}; $dsns{$_}{password} = $ENV{"DBICTEST_${_}_PASS"}; $dsns{$_}{connect_info_opts} = { on_connect_call => 'use_softcommit' } - if /\AFIREBIRD(?:_INTERBASE)\z/; + if /\AFIREBIRD(?:_INTERBASE)?\z/; }; plan skip_all => 'You need to set the DBICTEST_FIREBIRD_DSN, _USER and _PASS and/or the DBICTEST_FIREBIRD_ODBC_DSN, _USER and _PASS and/or the DBICTEST_FIREBIRD_INTERBASE_DSN, _USER and _PASS environment variables'