Skip to content

Commit

Permalink
s/todo/skip/ some Inf related tests which bigint branch will break co…
Browse files Browse the repository at this point in the history
…mpletely
  • Loading branch information
moritz committed Nov 15, 2011
1 parent df923e9 commit 82f7dc2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions S02-types/infinity.t
Expand Up @@ -19,15 +19,15 @@ plan 13;
ok( $x eq '-Inf', 'negative string equal' );
}

#?rakudo todo 'integer Inf'
#?rakudo skip 'integer Inf'
{
my $x = Inf.Int;
ok( $x == Inf, 'int numeric equal' );
#?niecza todo
ok( $x eq 'Inf', 'int string equal' );
}

#?rakudo todo 'integer Inf'
#?rakudo skip 'integer Inf'
{
my $x = ( -Inf ).Int;
ok( $x == -Inf, 'int numeric equal' );
Expand All @@ -44,7 +44,7 @@ plan 13;
# ~Inf eq ~Inf # true

ok truncate(Inf) ~~ Inf, 'truncate(Inf) ~~ Inf';
#?rakudo 3 todo 'Int conversion of NaN and Inf'
#?rakudo 3 skip 'Int conversion of NaN and Inf'
#?niecza 3 todo
ok NaN.Int === NaN, 'Inf.Int === Int';
ok Inf.Int === Inf, 'Inf.Int === Int';
Expand Down

0 comments on commit 82f7dc2

Please sign in to comment.