added more many_to_many tests and changed add_to_rel to accept linking table column...
[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
11   CD
12   Link
13   Bookmark
14   #dummy
15   Track
16   Tag
17   /,
18   { 'DBICTest::Schema' => [qw/
19     LinerNotes
20     OneKey
21     #dummy
22     TwoKeys
23     Serialized
24   /]},
25   (
26     'FourKeys',
27     'FourKeys_to_TwoKeys',
28     '#dummy',
29     'SelfRef',
30     'ArtistUndirectedMap',
31     'ArtistSourceName',
32     'Producer',
33     'CD_to_Producer',
34   ),
35   qw/SelfRefAlias TreeLike TwoKeyTreeLike Event/
36 );
37
38 1;