Removed BasicRels and reorganized where the various init/setup code resides.
[dbsrgits/DBIx-Class.git] / t / run / 24serialize.tl
CommitLineData
69ac22ee 1use Storable;
2
3sub run_tests {
4my $schema = shift;
5
6plan tests => 1;
7
8my $artist = $schema->resultset('Artist')->find(1);
9my $copy = eval { Storable::dclone($artist) };
10is_deeply($copy, $artist, 'serialize row object works');
11
12}
13
141;