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