r14186@rob-kinyons-powerbook58: rob | 2006-06-14 11:44:48 -0400
[dbsrgits/DBM-Deep.git] / t / 19_crossref.t
CommitLineData
ffed8b01 1##
2# DBM::Deep Test
3##
4use strict;
9d4fa373 5use Test::More tests => 6;
6use Test::Exception;
fde3db1a 7use t::common qw( new_fh );
ffed8b01 8
9use_ok( 'DBM::Deep' );
10
fde3db1a 11my ($fh2, $filename2) = new_fh();
98ac82af 12my $db2 = DBM::Deep->new( $filename2 );
13
14{
fde3db1a 15 my ($fh, $filename) = new_fh();
98ac82af 16 my $db = DBM::Deep->new( $filename );
17
18 ##
19 # Create structure in $db
20 ##
21 $db->import(
22 hash1 => {
23 subkey1 => "subvalue1",
c9cec40e 24 subkey2 => "subvalue2",
98ac82af 25 }
26 );
98ac82af 27 is( $db->{hash1}{subkey1}, 'subvalue1', "Value imported correctly" );
28 is( $db->{hash1}{subkey2}, 'subvalue2', "Value imported correctly" );
98ac82af 29 ##
30 # Cross-ref nested hash accross DB objects
31 ##
9d4fa373 32 throws_ok {
33 $db2->{copy} = $db->{hash1};
34 } qr/Cannot cross-reference\. Use export\(\) instead/, "cross-ref fails";
35 $db2->{copy} = $db->{hash1}->export;
98ac82af 36}
ffed8b01 37
38##
39# Make sure $db2 has copy of $db's hash structure
40##
41is( $db2->{copy}{subkey1}, 'subvalue1', "Value copied correctly" );
42is( $db2->{copy}{subkey2}, 'subvalue2', "Value copied correctly" );