Fixes to Tree::AdjacencyList, and working tests.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema.pm
1 package # hide from PAUSE 
2     DBICTest::Schema;
3
4 use base qw/DBIx::Class::Schema/;
5
6 no warnings qw/qw/;
7
8 __PACKAGE__->load_classes(qw/
9   Artist
10   Employee::Positioned
11   Employee::AdjacencyList
12   CD
13   #dummy
14   Track
15   Tag
16   /,
17   { 'DBICTest::Schema' => [qw/
18     LinerNotes
19     OneKey
20     #dummy
21     TwoKeys
22     Serialized
23   /]},
24   (
25     'FourKeys',
26     '#dummy',
27     'SelfRef',
28     'ArtistUndirectedMap',
29     'Producer',
30     'CD_to_Producer',
31   ),
32   qw/SelfRefAlias TreeLike/
33 );
34
35 1;