Test escaping quote characters in identifiers
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / Quotes.pm
CommitLineData
b25af2a8 1package # hide from PAUSE
2 DBICTest::Schema::Quotes;
3
4use warnings;
5use strict;
6
7use base 'DBICTest::BaseResult';
8
9# Include all the common quote characters
10__PACKAGE__->table('`with` [some] "quotes"');
11
12__PACKAGE__->add_columns(
13 '`has` [more] "quotes"' => {
14 data_type => 'integer',
15 is_auto_increment => 1,
16 accessor => 'has_more_quotes',
17 },
18);
19
201;