The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more
1234567891011121314 #!/usr/bin/perluse strict;use warnings;use Test::More tests => 3;BEGIN { $ENV{PERL_BSON_BACKEND} = undef }BEGIN { $INC{"BSON/XS.pm"} = undef }use BSON;my $ts = BSON::Timestamp->new(0x1234, 0x5678);isa_ok( $ts, 'BSON::Timestamp' );is( $ts->seconds, 0x1234 );is( $ts->increment, 0x5678 );
#!/usr/bin/perl
use
strict;
warnings;
Test::More
tests
=> 3;
BEGIN {
$ENV
{PERL_BSON_BACKEND} =
undef
}
$INC
{
"BSON/XS.pm"
} =
BSON;
my
$ts
= BSON::Timestamp->new(0x1234, 0x5678);
isa_ok(
,
'BSON::Timestamp'
);
is(
->seconds, 0x1234 );
->increment, 0x5678 );