Update to hide modules from the PAUSE Indexer.
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema.pm
CommitLineData
c6d74d3e 1package # hide from PAUSE
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
10 CD
11 #dummy
12 Track
13 Tag
14 /,
15 { 'DBICTest::Schema' => [qw/
16 LinerNotes
17 OneKey
18 #dummy
19 TwoKeys
9fcda149 20 Serialized
5ce32fc1 21 /]},
22 (
23 'FourKeys',
24 '#dummy',
25 'SelfRef',
5efe4c79 26 'ArtistUndirectedMap',
7411204b 27 'Producer',
28 'CD_to_Producer',
5ce32fc1 29 ),
887ce227 30 qw/SelfRefAlias TreeLike/
5ce32fc1 31);
a02675cd 32
331;