Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Refudge for JVM.
  • Loading branch information
colomon committed Jun 21, 2013
1 parent 1f38222 commit eb3daa3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion S32-num/int.t
Expand Up @@ -106,10 +106,12 @@ is('3e4d5'.Int, 3e4, "int('3e4d5') is 3e4");
#?DOES 1
# Special values
is((1.9e3).Int, 1900, "int 1.9e3 is 1900");
#?rakudo 3 todo 'Inf and NaN NYI for Int'
#?rakudo 2 todo 'Inf and NaN NYI for Int'
#?pugs 3 todo 'Inf and NaN NYI for Int'
is((Inf).Int, Inf, "int Inf is Inf");
is((-Inf).Int, -Inf, "int -Inf is -Inf");
#?rakudo todo 'Inf and NaN NYI for Int'
#?rakudo.jvm skip 'Inf and NaN NYI for Int'
is((NaN).Int, NaN, "int NaN is NaN");

# RT #65132
Expand Down

0 comments on commit eb3daa3

Please sign in to comment.