projects
/
dbsrgits/DBIx-Class.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
cleanup test by wreis
[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;