Pass attrs to find from update_or_create (reported by Nathan Kurz)
[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
9c2c91ea 12 Link
13 Bookmark
5ce32fc1 14 #dummy
15 Track
16 Tag
17 /,
18 { 'DBICTest::Schema' => [qw/
19 LinerNotes
20 OneKey
21 #dummy
22 TwoKeys
9fcda149 23 Serialized
5ce32fc1 24 /]},
25 (
26 'FourKeys',
3bd6e3e0 27 'FourKeys_to_TwoKeys',
5ce32fc1 28 '#dummy',
29 'SelfRef',
5efe4c79 30 'ArtistUndirectedMap',
bab77431 31 'ArtistSourceName',
b1fb2c94 32 'ArtistSubclass',
7411204b 33 'Producer',
34 'CD_to_Producer',
5ce32fc1 35 ),
89034887 36 qw/SelfRefAlias TreeLike TwoKeyTreeLike Event NoPrimaryKey/
5ce32fc1 37);
a02675cd 38
391;