New experimental TokenGroup component.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
2 DBICTest::Schema;
a02675cd 3
4use base qw/DBIx::Class::Schema/;
5
5ce32fc1 6no warnings qw/qw/;
7
a02675cd 8__PACKAGE__->load_classes(qw/
5ce32fc1 9 Artist
1e3ff014 10 Employee::Positional
80021def 11 Employee::AdjacencyList
5ce32fc1 12 CD
13 #dummy
14 Track
15 Tag
16 /,
17 { 'DBICTest::Schema' => [qw/
18 LinerNotes
19 OneKey
20 #dummy
21 TwoKeys
9fcda149 22 Serialized
5ce32fc1 23 /]},
24 (
25 'FourKeys',
26 '#dummy',
27 'SelfRef',
5efe4c79 28 'ArtistUndirectedMap',
7411204b 29 'Producer',
30 'CD_to_Producer',
5ce32fc1 31 ),
887ce227 32 qw/SelfRefAlias TreeLike/
5ce32fc1 33);
a02675cd 34
351;