X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FDBICTest%2FSchema.pm;h=2e783a75912d6f8d1cd593f2b79e630cacac03e0;hb=2c649fafe996a7ee5b85b229a9ed2128b0e7ee1f;hp=8072617021b4724dfee92f9bdcdd9dac33b8d5e4;hpb=5703eb149893635ad29b0a22c72700f61a2653dd;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/DBICTest/Schema.pm b/t/lib/DBICTest/Schema.pm index 8072617..2e783a7 100644 --- a/t/lib/DBICTest/Schema.pm +++ b/t/lib/DBICTest/Schema.pm @@ -1,26 +1,31 @@ package # hide from PAUSE DBICTest::Schema; -use base qw/DBIx::Class::Schema/; +use strict; +use warnings; +no warnings 'qw'; -no warnings qw/qw/; +use base 'DBICTest::BaseSchema'; + +__PACKAGE__->mk_group_accessors(simple => 'custom_attr'); __PACKAGE__->load_classes(qw/ Artist SequenceTest BindType - SingleBlob Employee CD - FileColumn Genre - Link Bookmark + Link #dummy Track Tag Year2000CDs Year1999CDs + CustomSql + Money + TimestampPrimaryKey /, { 'DBICTest::Schema' => [qw/ LinerNotes @@ -46,7 +51,7 @@ __PACKAGE__->load_classes(qw/ 'CD_to_Producer', 'Dummy', # this is a real result class we remove in the hook below ), - qw/SelfRefAlias TreeLike TwoKeyTreeLike Event EventTZ NoPrimaryKey/, + qw/SelfRefAlias TreeLike TwoKeyTreeLike Event NoPrimaryKey/, qw/Collection CollectionObject TypedObject Owners BooksInLibrary/, qw/ForceForeign Encoded/, );