Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
RT #125129 skip test for initializing parent attrs
  • Loading branch information
FROGGS committed May 7, 2015
1 parent 2945c76 commit 80cd397
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions S12-class/parent_attributes.t
Expand Up @@ -28,9 +28,12 @@ class Bar is Foo {
my Foo $u .= new(x => 5);
is($u.boo, 5, 'set attribute');

$u= Bar.new(Foo{ x => 12 });
is($u.boo, 12, 'set parent attribute');
$u.set(9);
is($u.boo, 9, 'reset parent attribute');
#?rakudo skip 'initialization of parent attributes RT #125129'
{
$u= Bar.new(Foo{ x => 12 });
is($u.boo, 12, 'set parent attribute');
$u.set(9);
is($u.boo, 9, 'reset parent attribute');
}

# vim: ft=perl6

0 comments on commit 80cd397

Please sign in to comment.