hopefully fixup pg tests (thanks to zby, all bugs mine)
[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     '#dummy',
28     'SelfRef',
29     'ArtistUndirectedMap',
30     'ArtistSourceName',
31     'Producer',
32     'CD_to_Producer',
33   ),
34   qw/SelfRefAlias TreeLike TwoKeyTreeLike Event/
35 );
36
37 1;