projects
/
dbsrgits/DBIx-Class-Historic.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
history
|
HEAD
Merge 'trunk' into 'DBIx-Class-current'
[dbsrgits/DBIx-Class-Historic.git]
/
t
/
run
/
24serialize.tl
Commit
Line
Data
69ac22ee
1
use Storable;
2
3
sub run_tests {
4
my $schema = shift;
5
6
plan tests => 1;
7
8
my $artist = $schema->resultset('Artist')->find(1);
9
my $copy = eval { Storable::dclone($artist) };
10
is_deeply($copy, $artist, 'serialize row object works');
11
12
}
13
14
1;