Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
rakudo unfudges
  • Loading branch information
moritz committed Jul 7, 2011
1 parent a0a2a81 commit 53c1453
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion S02-builtin_data_types/num.t
Expand Up @@ -141,7 +141,6 @@ isa_ok(1 / 1, Rat);
ok($a == 80000.0, 'trailing zeros compare correctly');
}

#?rakudo skip 'trailing zeros'
{
my $a = 1.0000000000000000000000000000000000000000000000000000000000000000000e1;
isa_ok($a, Num);
Expand Down
1 change: 0 additions & 1 deletion S02-literals/numeric.t
Expand Up @@ -28,7 +28,6 @@ ok 1+1i ~~ Numeric, '1+1i is Numeric';
nok 1+1i ~~ Real, '1+1i is not Real';

# RT #74640
#?rakudo skip 'long digit strings in nom'
is_approx 3.14159265358979323846264338327950288419716939937510e0,
3.141592, 'very long Num literals';

Expand Down
1 change: 0 additions & 1 deletion S03-operators/autovivification.t
Expand Up @@ -113,7 +113,6 @@ plan 23;
is $x, 5, '*= autovivifies with correct neutral element (without type constraint)';
}

#?rakudo skip 'Hash element autoviv'
{
my Int %h;
is (%h<foo> *= 23), 23, '*= autovivifies with correct neutral element (with Int proto on hash items)';
Expand Down
1 change: 0 additions & 1 deletion S04-declarations/constant.t
Expand Up @@ -259,7 +259,6 @@ use Test;
'assign constant its own value from expression';
}

#?rakudo skip 'RT 69967'
{
constant C = 6;
class A {
Expand Down
1 change: 0 additions & 1 deletion S13-type-casting/methods.t
Expand Up @@ -12,7 +12,6 @@ class CoercionTest {

my $o = CoercionTest.new();

#?rakudo skip 'Stringy'
#?niecza skip 'Stringy'
is ~$o, 'foo', 'method Stringy takes care of correct stringification';
ok +$o == 1.2, 'method Numeric takes care of correct numification';
Expand Down
1 change: 0 additions & 1 deletion S32-num/rat.t
Expand Up @@ -135,7 +135,6 @@ is_approx sin(5.0e0), sin(10/2), 'sin(Rat) works';
#?rakudo todo "NaN.Rat == NaN"
is NaN.Rat, NaN, "NaN.Rat == NaN";

#?rakudo skip "Infinite Rat"
{
is Inf.Rat, Inf, "Inf.Rat == Inf";
is (-Inf).Rat, -Inf, "(-Inf).Rat == -Inf";
Expand Down

0 comments on commit 53c1453

Please sign in to comment.