Revision history for DBM::Deep.
+0.981 Mar 06 11:00:00 2006 Pacific
+ - (RT#17947) - Fixed test that was failing on older Perls
+
0.98 Feb 28 11:00:00 2006 Pacific
- Added in patch by David Cantrell to allow use of DATA filehandle
- Fixed bug where attempting to export() a structure that used autobless would die
is( $db->[-3], $db->[2], "-3rd index is 2nd index" );
is( $db->[-4], $db->[1], "-4th index is 1st index" );
is( $db->[-5], $db->[0], "-5th index is 0th index" );
-is( $db->[-6], undef, "-6th index is undef" );
+{ my $v = $db->[-6]; is( $v, undef, "-6th index is undef" ); }
is( $db->length, 5, "... and we have five elements after abortive -6 index lookup" );
$db->[-1] = 'elem4.1';