X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FViewDeps.pm;h=e7df0f92943b122fd5898d28ae6d38e0f5cdef10;hb=f5f0cb1ddc5bc6b022f08a2cd95201596a5246f0;hp=6d597c6e8bc06225899b4d40a4528c841916331e;hpb=6ebf5cbb4dff9f173f41d5f31f2169f899dee492;p=dbsrgits%2FDBIx-Class-Historic.git diff --git a/t/lib/ViewDeps.pm b/t/lib/ViewDeps.pm index 6d597c6..e7df0f9 100644 --- a/t/lib/ViewDeps.pm +++ b/t/lib/ViewDeps.pm @@ -1,17 +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 aliased 'DBIx::Class::ResultSource::View' => 'View'; +use base 'DBICTest::BaseSchema'; __PACKAGE__->load_namespaces; -#for my $p (__PACKAGE__) { - #$p->load_namespaces; - #$_->attach_additional_sources - #for grep $_->isa(View), map $p->source($_), $p->sources; -#} +sub sqlt_deploy_hook { + my $self = shift; + $self->{sqlt} = shift; +} 1;