Skip to content

Commit 8e09d79

Browse files
committed
rakudo autounfudges
1 parent 339eddc commit 8e09d79

File tree

4 files changed

+0
-8
lines changed

4 files changed

+0
-8
lines changed

S02-types/declare.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,6 @@ plan 79;
330330
isa_ok($revo, Submethod );
331331
}
332332

333-
#?rakudo skip 'Macro not implemented'
334333
#?niecza skip 'Macro not implemented'
335334
{
336335
my Macro $remu;

S06-operator-overloading/imported-subs.t

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,11 @@ BEGIN { @*INC.push: 't/spec/packages' };
1212
# note that eval_dies_ok executes in the context of
1313
# Test.pm, and Test.pm doesn't import or lift the operators
1414

15-
#?rakudo skip 'nom regression'
1615
ok eval('5!'), 'postfix:<!> was exported...';
17-
#?rakudo skip 'nom regression'
1816
ok eval('5! == 120 or die'), '... and it works';
1917
eval_dies_ok '5!', 'Test.pm does not import the operators';
2018

21-
#?rakudo skip 'nom regression'
2219
ok eval('"a" yadayada "b"'), 'infix:<yadayada> was exported';
23-
#?rakudo skip 'nom regression'
2420
ok eval('"a" yadayada "b" eq "a..b" or die'), '... and it works';
2521
#?pugs todo
2622
ok eval('my $a = "a"; $a yadayada= "b"; $a eq "a..b" or die'), '... and yadayada= works too';

S14-roles/basic.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ ok ($bar ~~ Foo), 'smartmatch said our $bar does Foo';
2424
nok Foo.defined, 'role type objects are undefined';
2525

2626
# Can also write does inside the class.
27-
#?rakudo skip 'also'
2827
{
2928
role Foo2 { method x { 42 } }
3029
class Bar2 { also does Foo2; }

S32-num/complex.t

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ plan 487;
77
# Basic tests functions specific to complex numbers.
88

99
isa_ok(1 + 2i, Complex, 'postfix:<i> creates a Complex number');
10-
#?rakudo 2 skip 'i'
1110
#?pugs 2 skip 'i'
1211
isa_ok(i, Complex, 'i creates a Complex number');
1312
ok i == 1i, 'i == 1i';
@@ -24,7 +23,6 @@ is_approx((2i + 3)i, -2 + 3i, 'postfix:<i> works on a Complex number');
2423
#?pugs todo
2524
eval_dies_ok '(2 + 3i) > (2 + 2i)', '> comparison of complex numbers dies';
2625

27-
#?rakudo 3 skip 'i'
2826
#?pugs 3 skip 'i'
2927
is_approx(i, 1i, 'standalone i works to generate a Complex number');
3028
is_approx(1 - i, 1 - 1i, 'standalone i works to generate a Complex number');

0 commit comments

Comments
 (0)