From: Dagfinn Ilmari Mannsåker Date: Wed, 27 May 2015 07:39:58 +0000 (+0200) Subject: Fix t/storage/quote_names.t failures, caused by lazily built sqlmaker X-Git-Tag: v0.082821~15 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=30e326091d41a3d3caf7ab5c84264682098309cf;p=dbsrgits%2FDBIx-Class.git Fix t/storage/quote_names.t failures, caused by lazily built sqlmaker While the entire test is written badly (it ought to use the OptDeps system) it would be too much churn to fix it properly for little benefit. Additionally there is a very good chance that the shortener will become a core dep in the near future, hence the entire point will soon be moot anyway --ribasushi --- diff --git a/Changes b/Changes index fbf13dd..bd26cab 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,8 @@ Revision history for DBIx::Class * Fixes - Fix t/52leaks.t failures on compilerless systems (RT#104429) + - Fix t/storage/quote_names.t failures on systems with specified Oracle + test credentials while missing the optional Math::Base36 0.082820 2015-03-20 20:35 (UTC) * Fixes diff --git a/t/storage/quote_names.t b/t/storage/quote_names.t index 6492f25..a4bcefa 100644 --- a/t/storage/quote_names.t +++ b/t/storage/quote_names.t @@ -104,12 +104,12 @@ for my $db (sort { my $schema; - try { + my $sql_maker = try { $schema = DBICTest::Schema->connect($dsn, $user, $pass, { quote_names => 1 }); $schema->storage->ensure_connected; - 1; + $schema->storage->sql_maker; } || next; my ($exp_quote_char, $exp_name_sep) = @@ -118,19 +118,19 @@ for my $db (sort { my ($quote_char_text, $name_sep_text) = map { dumper($_) } ($exp_quote_char, $exp_name_sep); - is_deeply $schema->storage->sql_maker->quote_char, + is_deeply $sql_maker->quote_char, $exp_quote_char, "$db quote_char with quote_names => 1 is $quote_char_text"; - is $schema->storage->sql_maker->name_sep, + is $sql_maker->name_sep, $exp_name_sep, "$db name_sep with quote_names => 1 is $name_sep_text"; # if something was produced - it better be quoted if ( my $ddl = try { $schema->deployment_statements } ) { - my $quoted_artist = $schema->storage->sql_maker->_quote('artist'); + my $quoted_artist = $sql_maker->_quote('artist'); like ($ddl, qr/^CREATE\s+TABLE\s+\Q$quoted_artist/msi, "$db DDL contains expected quoted table name"); }