these examples are not that helpful
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / 02-instantiation.t
CommitLineData
b974984a 1#!perl
2
3use Test::More;
4
5use lib 't/lib';
6use DBICTest;
7use DBIx::Class::DeploymentHandler;
8
9my $handler = DBIx::Class::DeploymentHandler->new({
10 schema => DBICTest->init_schema()
11});
12
13ok($handler, 'DBIx::Class::DeploymentHandler instantiates correctly');
14
15done_testing;