Why would we only test with MySQL?
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / 02-instantiation.t
1 #!perl
2
3 use Test::More;
4
5 use lib 't/lib';
6 use DBICTest;
7 use DBIx::Class::DeploymentHandler;
8
9 my $handler = DBIx::Class::DeploymentHandler->new({
10    schema => DBICTest->init_schema()
11 });
12
13 ok($handler, 'DBIx::Class::DeploymentHandler instantiates correctly');
14
15 done_testing;