Add strict/warnings test, adjust all offenders (wow, that was a lot)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema / PunctuatedColumnName.pm
CommitLineData
8273e845 1package # hide from PAUSE
7653fdac 2 DBICTest::Schema::PunctuatedColumnName;
3
4a233f30 4use warnings;
5use strict;
6
7653fdac 7use base qw/DBICTest::BaseResult/;
8
9__PACKAGE__->table('punctuated_column_name');
10__PACKAGE__->add_columns(
11 'id' => {
12 data_type => 'integer',
13 is_auto_increment => 1,
14 },
15 q{foo ' bar} => {
16 data_type => 'integer',
17 is_nullable => 1,
18 accessor => 'foo_bar',
19 },
20 q{bar/baz} => {
21 data_type => 'integer',
22 is_nullable => 1,
23 accessor => 'bar_baz',
24 },
25 q{baz;quux} => {
26 data_type => 'integer',
27 is_nullable => 1,
28 accessor => 'bar_quux',
29 },
30);
31
32__PACKAGE__->set_primary_key('id');
33
341;