Revert workarounds for $@ broken during 5.13.x - mainly 1f870d5a
[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;