1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
use 5.0001;
use strict;
use warnings;
use Test::More 0.96;
use Math::BigInt;
use lib 't/lib';
use lib 't/pvtlib';
use CleanEnv;
use TestUtils;
use Tie::IxHash;
use JSON::MaybeXS;
use BSON qw/encode decode/;
use BSON::Raw;
my ($bson, $expect, $hash);
# encode then get first key with unpack
$bson = $expect = encode( Tie::IxHash->new( 1234 => 314159, 1235 => 300 ) );
my $object = BSON::Raw->new(bson=>$bson);
my $return_key = $object->_get_first_key;
is($return_key, "1234");
done_testing;
#
# This file is part of BSON
#
# This software is Copyright (c) 2020 by Stefan G. and MongoDB, Inc.
#
# This is free software, licensed under:
#
# The Apache License, Version 2.0, January 2004
#
#
# vim: set ts=4 sts=4 sw=4 et tw=75:
|