Count warnings differently, as SQLT produces some weird stuff under 5.10. All of...
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema.pm
index 8e7597d..08f396f 100644 (file)
@@ -7,8 +7,11 @@ no warnings qw/qw/;
 
 __PACKAGE__->load_classes(qw/
   Artist
+  SequenceTest
   Employee
   CD
+  FileColumn
+  Genre
   Link
   Bookmark
   #dummy
@@ -33,7 +36,15 @@ __PACKAGE__->load_classes(qw/
     'Producer',
     'CD_to_Producer',
   ),
-  qw/SelfRefAlias TreeLike TwoKeyTreeLike Event NoPrimaryKey/
+  qw/SelfRefAlias TreeLike TwoKeyTreeLike Event EventTZ NoPrimaryKey/,
+  qw/Collection CollectionObject TypedObject Owners BooksInLibrary/,
+  qw/ForceForeign/,
 );
 
+sub sqlt_deploy_hook {
+  my ($self, $sqlt_schema) = @_;
+
+  $sqlt_schema->drop_table('dummy');
+}
+
 1;