Fix more fallout from 9b871b00, centralize the ugly in a base Schema class
[dbsrgits/DBIx-Class.git] / t / lib / ViewDepsBad.pm
1 package    # hide from PAUSE
2     ViewDepsBad;
3 ## Used in 105view_deps.t
4
5 use strict;
6 use warnings;
7 use base 'DBICTest::BaseSchema';
8
9 __PACKAGE__->load_namespaces;
10
11 sub sqlt_deploy_hook {
12     my $self = shift;
13     $self->{sqlt} = shift;
14 }
15
16 1;