Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove non-spec test
  • Loading branch information
moritz committed Oct 16, 2011
1 parent 575ea0a commit 77e0ced
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions S12-construction/BUILD.t
@@ -1,7 +1,7 @@
use v6;
use Test;

plan 8;
plan 7;

# L<S12/Semantics of C<bless>/The default BUILD and BUILDALL>

Expand Down Expand Up @@ -82,21 +82,6 @@ is $obj.gather, 'Parent(a): (7) | Child(a, b): (7, 5)',
is $c.counter<BUILD>, 1, 'BUILD called once';
}

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

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

TestCompiler.new;
is $counter, 1, "testing BUILD in compiler subclass";
}

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

0 comments on commit 77e0ced

Please sign in to comment.