Fix more fallout from 9b871b00, centralize the ugly in a base Schema class
[dbsrgits/DBIx-Class.git] / t / lib / ViewDeps.pm
index 05fea95..e7df0f9 100644 (file)
@@ -1,11 +1,16 @@
-package # hide from PAUSE
+package    # hide from PAUSE
     ViewDeps;
 ## Used in 105view_deps.t
 
 use strict;
 use warnings;
-use parent qw(DBIx::Class::Schema);
+use base 'DBICTest::BaseSchema';
 
 __PACKAGE__->load_namespaces;
 
+sub sqlt_deploy_hook {
+    my $self = shift;
+    $self->{sqlt} = shift;
+}
+
 1;