Fixup after pull from trunk
[dbsrgits/DBIx-Class-Historic.git] / t / lib / DBICTest / Schema.pm
CommitLineData
a02675cd 1package DBICTest::Schema;
2
3use base qw/DBIx::Class::Schema/;
4
5ce32fc1 5no warnings qw/qw/;
6
a02675cd 7__PACKAGE__->load_classes(qw/
5ce32fc1 8 Artist
9 CD
10 #dummy
11 Track
12 Tag
13 /,
14 { 'DBICTest::Schema' => [qw/
15 LinerNotes
16 OneKey
17 #dummy
18 TwoKeys
19 /]},
20 (
21 'FourKeys',
22 '#dummy',
23 'SelfRef',
24 ),
25 qw/SelfRefAlias/
26);
a02675cd 27
281;