Your IP : 216.73.216.1


Current Path : /usr/share/doc/perl-DBIx-Class/t/lib/DBICTest/
Upload File :
Current File : //usr/share/doc/perl-DBIx-Class/t/lib/DBICTest/DeployComponent.pm

#   belongs to t/86sqlt.t
package # hide from PAUSE
    DBICTest::DeployComponent;
use warnings;
use strict;

our $hook_cb;

sub sqlt_deploy_hook {
  my $class = shift;

  $hook_cb->($class, @_) if $hook_cb;
  $class->next::method(@_) if $class->next::can;
}

1;