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