Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
unfudge some tests for rakudo; fix one
  • Loading branch information
moritz committed Jun 21, 2012
1 parent 12a36cc commit ffe1467
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
1 change: 0 additions & 1 deletion S03-operators/assign.t
Expand Up @@ -629,7 +629,6 @@ sub l () { 1, 2 };
{
my $a;
my @z = (($a) = l, l, l);
#?rakudo todo 'item/list assignment'
#?pugs todo
is($a.elems, 6, 'lhs treats ($a) as list');
#?rakudo todo 'item/list assignment'
Expand Down
7 changes: 1 addition & 6 deletions S10-packages/basic.t
Expand Up @@ -178,19 +178,14 @@ eval_lives_ok q' module MapTester { (1, 2, 3).map: { $_ } } ',

{
eval_lives_ok 'class RT64688_c1;use Test', 'use after class line';
#?rakudo todo 'RT #64688'
#?niecza todo
eval_lives_ok 'class RT64688_c1 { use Test }', 'use in class block';
eval_lives_ok 'class RT64688_d1 { use Test }', 'use in class block';
eval_lives_ok 'module RT64688_m1;use Test', 'use after module line';
#?rakudo todo 'nom regression'
eval_lives_ok 'module RT64688_m2 { use Test }', 'use in module block';
#?rakudo todo 'nom regression'
eval_lives_ok 'package RT64688_p2 { use Test }', 'use in package block';
eval_lives_ok 'grammar RT64688_g1;use Test', 'use after grammar line';
#?rakudo todo 'nom regression'
eval_lives_ok 'grammar RT64688_g2 { use Test }', 'use in grammar block';
eval_lives_ok 'role RT64688_r1;use Test', 'use after role line';
#?rakudo todo 'nom regression'
eval_lives_ok 'role RT64688_r2 { use Test }', 'use in role block';
}

Expand Down

0 comments on commit ffe1467

Please sign in to comment.