Only load DBICTest::Schema when needed in tests
[dbsrgits/DBIx-Class.git] / t / 63register_column.t
CommitLineData
7653fdac 1use strict;
8273e845 2use warnings;
7653fdac 3
4use Test::More;
5use Test::Exception;
6use lib qw(t/lib);
7use DBICTest;
2c2bc4e5 8use DBICTest::Schema;
7653fdac 9
10lives_ok {
11 DBICTest::Schema->load_classes('PunctuatedColumnName')
12} 'registered columns with weird names';
13
14done_testing;