Revert change #28980 per Jarkko's suggestion
[p5sagit/p5-mst-13.2.git] / lib / Math / BigInt / t / alias.inc
CommitLineData
b282a552 1
2# alias subroutine testing, included by sub_ali.t and mbi_ali.t
3
4my $x = $CL->new(123);
5
6is ($x->is_pos(), 1, '123 is positive');
7is ($x->is_neg(), 0, '123 is not negative');
8is ($x->as_int(), 123, '123 is 123 as int');
3a427a11 9is (ref($x->as_int()), $CL, "as_int(123) is of class '$CL'");
b282a552 10$x->bneg();
11is ($x->is_pos(), 0, '-123 is not positive');
12is ($x->is_neg(), 1, '-123 is negative');