Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
niecza (auto)unfudge
  • Loading branch information
coke committed Feb 20, 2012
1 parent 5adcc30 commit 247a066
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 7 deletions.
2 changes: 0 additions & 2 deletions S02-types/declare.t
Expand Up @@ -264,14 +264,12 @@ plan 79;
}

#?rakudo skip 'KeySet not implemented'
#?niecza skip 'KeySet not implemented'
{
my KeySet $paxa;
isa_ok($paxa,KeySet );
}

#?rakudo skip 'KeyBag not implemented'
#?niecza skip 'KeyBag not implemented'
{
my KeyBag $paze;
isa_ok($paze,KeyBag );
Expand Down
2 changes: 1 addition & 1 deletion S02-types/lists.t
Expand Up @@ -135,14 +135,14 @@ plan 27;
is +$arrayref[1], 2, '\@array creates an arrayref (2)';
}

#?niecza skip 'Unable to resolve method rt62836 in class Parcel'
{
sub Parcel::rt62836 { 62836 }

dies_ok { <1 2 3>.rt62836 },
'call to user-declared sub in Parcel:: class dies';
try { eval '<1 2 3>.rt62836' };
ok "$!" ~~ /rt62836/, 'error message contains name of sub';
#?niecza todo 'error message says "not found"'
ok "$!" ~~ /not \s+ found/, 'error message says "not found"';
diag $!;
ok "$!" ~~ /Seq|Parcel/, 'error message contains name of class';
Expand Down
1 change: 0 additions & 1 deletion S04-declarations/constant.t
Expand Up @@ -78,7 +78,6 @@ use Test;
is ConstantTest2::yak, 'shaving', 'constant can be explicitly "our"-scoped';
}

#?niecza skip 'Unable to resolve method postcircumfix:<( )> in class Any'
{
package ConstantTest3 {
my constant yak = 'shaving';
Expand Down
1 change: 0 additions & 1 deletion S05-modifier/ignorecase.t
Expand Up @@ -37,7 +37,6 @@ ok "hello" !~~ m:i/<&mixedcase>/, "no match with :i if matched by subrule";
ok "hello" ~~ m:i/Hello/, "match with :i (direct)";

ok "hello" !~~ m:ignorecase/<&mixedcase>/, "no match with :ignorecase + subrule";
#?niecza todo
ok "hello" ~~ m:ignorecase/Hello/, "match with :ignorecase (direct)";
ok('Δ' ~~ m:i/δ/, ':i with greek chars');

Expand Down
1 change: 0 additions & 1 deletion S12-class/inheritance.t
Expand Up @@ -86,7 +86,6 @@ class Y is X {
is(Z.new.j(), 'X', 'inherited method dispatch works');
is(Y.new.k(), 'X', 'inherited method dispatch works inside another class with same-named method');

#?niecza skip 'No value for parameter $i in A.y'
{
class A {
has @.x = <a b c>;
Expand Down
1 change: 0 additions & 1 deletion S12-methods/syntax.t
Expand Up @@ -35,7 +35,6 @@ is (1..8).grep: { $_ % 2 }.map: { $_ - 1}.join('|'), '0|2|4|6',

# Used to be Rakudo RT #61988, $.foo form didn't accept arguments

#?niecza skip 'No value for parameter $a in B.a'
{
class B {
method a ($a, $b) { $a + $b }
Expand Down

0 comments on commit 247a066

Please sign in to comment.