multi-step prefetch along the same rel (e.g. for trees) now works
[dbsrgits/DBIx-Class.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',
5efe4c79 24 'ArtistUndirectedMap',
7411204b 25 'Producer',
26 'CD_to_Producer',
5ce32fc1 27 ),
887ce227 28 qw/SelfRefAlias TreeLike/
5ce32fc1 29);
a02675cd 30
311;