Commit | Line | Data |
---|---|---|
f30e8593 | 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 | ||
f30e8593 | 10 | my $clone = $schema->clone; |
237e9af3 | 11 | cmp_ok ($clone->storage, 'eq', $schema->storage, 'Storage copied into new schema (not a new instance)'); |
f30e8593 | 12 | |
13 | done_testing; |