projects
/
dbsrgits/DBIx-Class-Historic.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Do not load DBIC::Optional::Dependencies at runtime unless we need to
[dbsrgits/DBIx-Class-Historic.git]
/
t
/
lib
/
ViewDeps.pm
1
package # hide from PAUSE
2
ViewDeps;
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;