multi-step prefetch along the same rel (e.g. for trees) now works
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema.pm
1 package DBICTest::Schema;
2
3 use base qw/DBIx::Class::Schema/;
4
5 no warnings qw/qw/;
6
7 __PACKAGE__->load_classes(qw/
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     'ArtistUndirectedMap',
25     'Producer',
26     'CD_to_Producer',
27   ),
28   qw/SelfRefAlias TreeLike/
29 );
30
31 1;