projects
/
dbsrgits/DBIx-Class.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Neither of these can fail now that we dep on 5.8.1 (missed in 55087b99)
[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;