55790721a54451844f3868c598bd66e244ee2157
[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 use DBICTest::Schema;
9
10 lives_ok {
11   DBICTest::Schema->load_classes('PunctuatedColumnName')
12 } 'registered columns with weird names';
13
14 done_testing;