Commit | Line | Data |
---|---|---|
c0329273 | 1 | BEGIN { do "./t/lib/ANFANG.pm" or die ( $@ || $! ) } |
2 | ||
7653fdac | 3 | use strict; |
8273e845 | 4 | use warnings; |
7653fdac | 5 | |
6 | use Test::More; | |
7 | use Test::Exception; | |
c0329273 | 8 | |
7653fdac | 9 | use DBICTest; |
10 | ||
11 | lives_ok { | |
12 | DBICTest::Schema->load_classes('PunctuatedColumnName') | |
13 | } 'registered columns with weird names'; | |
14 | ||
15 | done_testing; |