fixup for stringify that can be false in find_or_create_related
[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
9c2c91ea 11 Link
12 Bookmark
5ce32fc1 13 #dummy
14 Track
15 Tag
16 /,
17 { 'DBICTest::Schema' => [qw/
18 LinerNotes
19 OneKey
20 #dummy
21 TwoKeys
9fcda149 22 Serialized
5ce32fc1 23 /]},
24 (
25 'FourKeys',
26 '#dummy',
27 'SelfRef',
5efe4c79 28 'ArtistUndirectedMap',
7411204b 29 'Producer',
30 'CD_to_Producer',
5ce32fc1 31 ),
637ca936 32 qw/SelfRefAlias TreeLike TwoKeyTreeLike/
5ce32fc1 33);
a02675cd 34
351;