Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
rakudo unfudging
  • Loading branch information
moritz committed Oct 3, 2011
1 parent 7f5a2ae commit 8a543d3
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion S02-lexical-conventions/sub-block-parsing.t
Expand Up @@ -20,7 +20,6 @@ ok(sub { 42 }(), 'sub {...} works'); # TODO: clarify
#?rakudo skip 'confused near "(sub{ 42 }"'
ok(sub{ 42 }(), 'sub{...} works'); # TODO: clarify

#?rakudo todo 'block parsing problem'
eval_dies_ok q[
sub x { die }
x();
Expand Down
2 changes: 0 additions & 2 deletions S02-types/mixed_multi_dimensional.t
Expand Up @@ -32,14 +32,12 @@ Some deeper tests were already added.
is(+@array, 1, 'the array has one value in it');

isa_ok(@array[0], Pair);
#?rakudo skip "Method 'at_key' not found for invocant of class 'Pair'"
is(@array[0]<key>, 'value', 'got the right pair value');

@array[1] = ('key1' => 'value1'); # assign it inline
is(+@array, 2, 'the array has two values in it');
isa_ok(@array[1], Pair);

#?rakudo skip "Method 'at_key' not found for invocant of class 'Pair'"
is(@array[1]<key1>, 'value1', 'got the right pair value');
}

Expand Down
1 change: 0 additions & 1 deletion S06-signature/named-parameters.t
Expand Up @@ -132,7 +132,6 @@ sub mandatory (:$param!) {
is(mandatory(param => 5) , 5, "named mandatory parameter is returned");
eval_dies_ok('mandatory()', "not specifying a mandatory parameter fails");

#?rakudo skip 'Cannot apply trait required to parameters yet'
{
sub mandatory_by_trait (:$param is required) {
return $param;
Expand Down
2 changes: 0 additions & 2 deletions S10-packages/basic.t
Expand Up @@ -19,7 +19,6 @@ package Simple {
our $forty_two = 42;
}

#?rakudo skip 'nested packages'
is Simple::Bar.new.baz, 'hi', 'class test';

#?rakudo skip 'ticket uses role; RT #62900'
Expand Down Expand Up @@ -65,7 +64,6 @@ is Simple::Bar.new.baz, 'hi', 'class test';
'WHO implementation with longname';
}

#?rakudo skip 'role in package'
eval_lives_ok 'package A1 { role B1 {}; class C1 does A1::B1 {}} ',
'can refer to role using package';

Expand Down

0 comments on commit 8a543d3

Please sign in to comment.