Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add bigint mod test that Rakudo was failing.
  • Loading branch information
colomon committed Sep 7, 2013
1 parent ccfc662 commit 2e0bf7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion S03-operators/arith.t
@@ -1,6 +1,6 @@
use v6;
use Test;
plan 143;
plan 144;

my $five = abs(-5);

Expand Down Expand Up @@ -182,6 +182,7 @@ is 13 mod 4, 1, '13 mod 4';
is -13 mod 4, 3, '-13 mod 4';
is 13 mod -4, -3, '13 mod -4';
is -13 mod -4, -1, '-13 mod -4';
is 4850761783423467784 mod 256, 8, '4850761783423467784 mod 256';

tryeq 2.5 / 2, 1.25;
tryeq 3.5 / -2, -1.75;
Expand Down

0 comments on commit 2e0bf7c

Please sign in to comment.