#
# compare v7 to v0.
#
use
strict;
use
warnings;
use
Test::More;
use
MyNote;
ok 1,
'loaded'
;
{
# binary
generate_v7(
my
$u7
);
generate_v0(
my
$u0
);
ok is_null(
$u0
),
'is null'
;
isnt
$u7
,
$u0
,
'binary not null'
;
is compare(
$u7
,
$u0
), 1,
'greater than binary'
;
}
{
# string
my
$u7
= uuid7();
my
$u0
= uuid0();
isnt
$u7
,
$u0
,
'string not null'
;
is compare(
$u7
,
$u0
), 1,
'greater than string'
;
}
done_testing;