Changes/author for a1e1a51
[dbsrgits/DBIx-Class.git] / t / schema / clone.t
1 use strict;
2 use warnings;
3 use Test::More;
4
5 use lib qw(t/lib);
6 use DBICTest;
7
8 my $schema = DBICTest->init_schema();
9
10 my $clone = $schema->clone;
11 cmp_ok ($clone->storage, 'eq', $schema->storage, 'Storage copied into new schema (not a new instance)');
12
13 done_testing;