X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FViewDeps.pm;h=e7df0f92943b122fd5898d28ae6d38e0f5cdef10;hb=3d0733aac1d6b24f71d0836ff3418ea8cdeba97a;hp=aa3f588e4510ea9105e3eceb342447e753142980;hpb=7364d776a7926a47d74fb503ca546bec719e88f3;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/ViewDeps.pm b/t/lib/ViewDeps.pm index aa3f588..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 base 'DBIx::Class::Schema'; +use base 'DBICTest::BaseSchema'; __PACKAGE__->load_namespaces; +sub sqlt_deploy_hook { + my $self = shift; + $self->{sqlt} = shift; +} + 1;