X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fstorage%2Fquote_names.t;h=bf46122b56b72381d56ebbf2b3aefe9a8aaa386e;hb=5f179c3f8dc19f113449f3f4fa26a89beb227f14;hp=a4bcefae0b3d300205cf26a73bd8a49ac802605b;hpb=b567407446fe2ac215dde043b1cef8e8e5f8d7b6;p=dbsrgits%2FDBIx-Class.git diff --git a/t/storage/quote_names.t b/t/storage/quote_names.t index a4bcefa..bf46122 100644 --- a/t/storage/quote_names.t +++ b/t/storage/quote_names.t @@ -128,8 +128,12 @@ for my $db (sort { "$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 } ) { - + if ( + # the SQLT producer has no idea what quotes are :/ + $db ne 'SYBASE' + and + my $ddl = try { $schema->deployment_statements } + ) { 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");