X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FViewDeps.pm;h=6c3a31106cf44b0ec266966dee2b388d9091d270;hb=8c49ff1aa472bfc3c21f14a03411ca95893226fe;hp=05fea952eaeb490c4967a01c189e79edf82ec719;hpb=1e70d9dcf044751d671d22182a0bc56ac294c347;p=dbsrgits%2FDBIx-Class.git diff --git a/t/lib/ViewDeps.pm b/t/lib/ViewDeps.pm index 05fea95..6c3a311 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 'DBIx::Class::Schema'; __PACKAGE__->load_namespaces; +sub sqlt_deploy_hook { + my $self = shift; + $self->{sqlt} = shift; +} + 1;