add basic unit tests for MigrationSchema
[dbsrgits/DBIx-Class-DeploymentHandler.git] / t / migration_schema / schema_loader.t
CommitLineData
087d8c8a 1#!perl
2
3use strict;
4use warnings;
5
6use Test::More;
7
8use lib 't/lib';
9
10use aliased 'DBIx::Class::DeploymentHandler::MigrationSchema::SchemaLoader';
11
12my $ref = \'';
13my $ms = SchemaLoader->new({
14 schema => $ref,
15});
16
17ok($ms, 'MigrationSchema gets instantiated');
18
19note('doing anything else in this test is way hard. We just test this in the integration tests');
20
21done_testing;