Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Turn some todos to skips.
  • Loading branch information
jnthn committed Jul 9, 2011
1 parent 5031753 commit 85b83d5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions S12-construction/BUILD.t
Expand Up @@ -83,21 +83,21 @@ is $obj.gather, 'Parent(a): (7) | Child(a, b): (7, 5)',
}

# RT #67888
#?rakudo skip 'RT #67888'
{
my $counter = 0;
my $counter = 0;

class TestCompiler is Perl6::Compiler {
submethod BUILD {
$counter++;
class TestCompiler is Perl6::Compiler {
submethod BUILD {
$counter++;
}
}
}

TestCompiler.new;
#?rakudo todo 'RT #67888'
is $counter, 1, "testing BUILD in compiler subclass";
TestCompiler.new;
is $counter, 1, "testing BUILD in compiler subclass";
}

#?rakudo todo 'method BUILD should warn'
#?rakudo skip 'method BUILD should warn'
{
BEGIN { @*INC.push: 't/spec/packages' }
use Test::Util;
Expand Down

0 comments on commit 85b83d5

Please sign in to comment.