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