Merge 'trunk' into 'DBIx-Class-current'
[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
12 #dummy
13 Track
14 Tag
15 /,
16 { 'DBICTest::Schema' => [qw/
17 LinerNotes
18 OneKey
19 #dummy
20 TwoKeys
9fcda149 21 Serialized
5ce32fc1 22 /]},
23 (
24 'FourKeys',
25 '#dummy',
26 'SelfRef',
5efe4c79 27 'ArtistUndirectedMap',
bab77431 28 'ArtistSourceName',
7411204b 29 'Producer',
30 'CD_to_Producer',
5ce32fc1 31 ),
637ca936 32 qw/SelfRefAlias TreeLike TwoKeyTreeLike/
5ce32fc1 33);
a02675cd 34
351;