fixed new many_to_many accessors and added tests and docs
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema.pm
CommitLineData
bab77431 1package # hide from PAUSE
c6d74d3e 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
4e298a80 10 Employee
5ce32fc1 11 CD
9c2c91ea 12 Link
13 Bookmark
5ce32fc1 14 #dummy
15 Track
16 Tag
17 /,
18 { 'DBICTest::Schema' => [qw/
19 LinerNotes
20 OneKey
21 #dummy
22 TwoKeys
9fcda149 23 Serialized
5ce32fc1 24 /]},
25 (
26 'FourKeys',
27 '#dummy',
28 'SelfRef',
5efe4c79 29 'ArtistUndirectedMap',
bab77431 30 'ArtistSourceName',
7411204b 31 'Producer',
32 'CD_to_Producer',
5ce32fc1 33 ),
f86fcf0d 34 qw/SelfRefAlias TreeLike TwoKeyTreeLike Event/
5ce32fc1 35);
a02675cd 36
371;