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