Move ordered tests from 26 to 27.
[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
4e298a80 10 Employee
5ce32fc1 11 CD
12 #dummy
13 Track
14 Tag
15 /,
16 { 'DBICTest::Schema' => [qw/
17 LinerNotes
18 OneKey
19 #dummy
20 TwoKeys
9fcda149 21 Serialized
5ce32fc1 22 /]},
23 (
24 'FourKeys',
25 '#dummy',
26 'SelfRef',
5efe4c79 27 'ArtistUndirectedMap',
7411204b 28 'Producer',
29 'CD_to_Producer',
5ce32fc1 30 ),
637ca936 31 qw/SelfRefAlias TreeLike TwoKeyTreeLike/
5ce32fc1 32);
a02675cd 33
341;