New namespace::clean to resolve the Package::Stash megafail
[dbsrgits/DBIx-Class.git] / t / 63register_column.t
CommitLineData
7653fdac 1use strict;
2use warnings;
3
4use Test::More;
5use Test::Exception;
6use lib qw(t/lib);
7use DBICTest;
8
9lives_ok {
10 DBICTest::Schema->load_classes('PunctuatedColumnName')
11} 'registered columns with weird names';
12
13done_testing;