X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema.pm;h=8e7597d84d83f4c3a7b2aa260373238be9a85c45;hb=89034887963b728f979ec9185350061a827db7af;hp=6f37ba90709cb2f405ba0c4bd1f509335a33d523;hpb=5efe4c7916e1fb2132c1b73ab4ddddbced317adb;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema.pm b/t/lib/DBICTest/Schema.pm index 6f37ba9..8e7597d 100644 --- a/t/lib/DBICTest/Schema.pm +++ b/t/lib/DBICTest/Schema.pm @@ -1,4 +1,5 @@ -package DBICTest::Schema; +package # hide from PAUSE + DBICTest::Schema; use base qw/DBIx::Class::Schema/; @@ -6,7 +7,10 @@ no warnings qw/qw/; __PACKAGE__->load_classes(qw/ Artist + Employee CD + Link + Bookmark #dummy Track Tag @@ -16,16 +20,20 @@ __PACKAGE__->load_classes(qw/ OneKey #dummy TwoKeys + Serialized /]}, ( 'FourKeys', + 'FourKeys_to_TwoKeys', '#dummy', 'SelfRef', 'ArtistUndirectedMap', + 'ArtistSourceName', + 'ArtistSubclass', 'Producer', 'CD_to_Producer', ), - qw/SelfRefAlias/ + qw/SelfRefAlias TreeLike TwoKeyTreeLike Event NoPrimaryKey/ ); 1;