X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FViewDeps.pm;h=e7df0f92943b122fd5898d28ae6d38e0f5cdef10;hb=a2c77c97735124a7bf4073cf5cef5480bec752a8;hp=05fea952eaeb490c4967a01c189e79edf82ec719;hpb=1e70d9dcf044751d671d22182a0bc56ac294c347;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/ViewDeps.pm b/t/lib/ViewDeps.pm index 05fea95..e7df0f9 100644 --- a/t/lib/ViewDeps.pm +++ b/t/lib/ViewDeps.pm @@ -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;