Recognize more authorship based on the historic repo (if available)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / DeployComponent.pm
CommitLineData
a267ea85 1# belongs to t/86sqlt.t
2package # hide from PAUSE
3 DBICTest::DeployComponent;
4use warnings;
5use strict;
6
7our $hook_cb;
8
9sub sqlt_deploy_hook {
10 my $class = shift;
11
12 $hook_cb->($class, @_) if $hook_cb;
13 $class->next::method(@_) if $class->next::can;
14}
15
161;