Fixed export() so that it works with crossreferences
my $c = Scalar::Util::blessed(
$self->{parent}->get($self->{parent_key})
);
- if ( $c ) {
+ if ( $c && !$c->isa( 'DBM::Deep' ) ) {
bless $temp, $c;
}
}
);
is( $db->{hash1}{subkey1}, 'subvalue1', "Value imported correctly" );
is( $db->{hash1}{subkey2}, 'subvalue2', "Value imported correctly" );
-
##
# Cross-ref nested hash accross DB objects
##