Massive rewrite of bind handling, and overall simplification of ::Storage::DBI
[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;
7use base 'DBIx::Class::Schema';
8
9__PACKAGE__->load_namespaces;
10
11sub sqlt_deploy_hook {
12 my $self = shift;
13 $self->{sqlt} = shift;
14}
15
161;