Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
unfudges and refudges for rakudo
  • Loading branch information
moritz committed Jul 9, 2011
1 parent ed8e11e commit 82ca32c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions S12-class/attributes.t
Expand Up @@ -66,7 +66,6 @@ class Foo {
}
}
my $foo = Foo.new;
#?rakudo todo "Somehow this is Hash and not Hash at the same time?"
isa_ok($foo.bar, Hash, 'hash attribute initialized');
$foo.set_bar();
is($foo.bar<a>, 'baz', 'hash attribute initialized/works');
Expand Down Expand Up @@ -118,7 +117,7 @@ is($bar.bar[2], 300, 'array attribute initialized/works');
my $rt81718 = RT81718.new();

dies_ok { $rt81718.bomb() }, 'no attribute access for sub';
#?rakudo todo 'RT81718'
#?rakudo skip 'RT81718 (false positive in nom)'
dies_ok { $rt81718.meta_bomb() }, 'no attr access for sub from method';
}

Expand Down
1 change: 0 additions & 1 deletion S12-construction/new.t
Expand Up @@ -47,7 +47,6 @@ is $o.x, 5, '... worked for the class Parent (other order)';
}

# RT 71706
#?rakudo todo 'nested classes'
{
class RT71706 {
class RT71706::Artie {}
Expand Down

0 comments on commit 82ca32c

Please sign in to comment.