Fix to update(\%args) with inflation from test case by Peter Rabbitson
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema.pm
1 package DBICTest::Schema;
2
3 use base qw/DBIx::Class::Schema/;
4
5 no warnings qw/qw/;
6
7 __PACKAGE__->load_classes(qw/
8   Artist
9   CD
10   #dummy
11   Track
12   Tag
13   /,
14   { 'DBICTest::Schema' => [qw/
15     LinerNotes
16     OneKey
17     #dummy
18     TwoKeys
19     Serialized
20   /]},
21   (
22     'FourKeys',
23     '#dummy',
24     'SelfRef',
25     'ArtistUndirectedMap',
26     'Producer',
27     'CD_to_Producer',
28   ),
29   qw/SelfRefAlias TreeLike/
30 );
31
32 1;