Resolve $rsrc instance duality on metadata traversal
[dbsrgits/DBIx-Class.git] / t / 63register_column.t
CommitLineData
c0329273 1BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) }
2
7653fdac 3use strict;
8273e845 4use warnings;
7653fdac 5
6use Test::More;
7use Test::Exception;
c0329273 8
7653fdac 9use DBICTest;
10
11lives_ok {
12 DBICTest::Schema->load_classes('PunctuatedColumnName')
13} 'registered columns with weird names';
14
15done_testing;