add proper test for column names with punctuation, bump CAG dep for fix
[dbsrgits/DBIx-Class.git] / t / 63register_column.t
1 use strict;
2 use warnings;  
3
4 use Test::More;
5 use Test::Exception;
6 use lib qw(t/lib);
7 use DBICTest;
8
9 lives_ok {
10   DBICTest::Schema->load_classes('PunctuatedColumnName')
11 } 'registered columns with weird names';
12
13 done_testing;