Codebase list libcryptx-perl / 4123f295-1a02-480a-a9a3-10562340fe11/main t / mbi_ltm_storable.t
4123f295-1a02-480a-a9a3-10562340fe11/main

Tree @4123f295-1a02-480a-a9a3-10562340fe11/main (Download .tar.gz)

mbi_ltm_storable.t @4123f295-1a02-480a-a9a3-10562340fe11/mainraw · history · blame

use strict;
use warnings;
use Test::More;

BEGIN {
  plan skip_all => "requires Storable 2.0+" unless eval { require Storable && eval($Storable::VERSION) >= 2.0 };
  plan tests => 1;
}

use Math::BigInt::LTM;

use Storable qw(freeze thaw);

my $num = Math::BigInt::LTM->_new(42);

my $serialised = freeze $num;
my $cloned = thaw $serialised;

ok(!Math::BigInt::LTM->_acmp($cloned, $num));