Test sqlt_deploy_hook on the Schema level
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Schema.pm
index b2e4099..979cf84 100644 (file)
@@ -39,4 +39,10 @@ __PACKAGE__->load_classes(qw/
   qw/Owners BooksInLibrary/
 );
 
+sub sqlt_deploy_hook {
+  my ($self, $sqlt_schema) = @_;
+
+  $sqlt_schema->drop_table('link');
+}
+
 1;