Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
use standard "NYI" text
  • Loading branch information
coke committed Jul 9, 2014
1 parent 58c8aea commit 3c9bf20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions S06-operator-overloading/sub.t
Expand Up @@ -396,15 +396,15 @@ Testing operator overloading subroutines
is EVAL('sub infix:<+>($a, $b) { 42 }; 5 + 5'), 42, 'infix:<+>($a, $b)';
}
#?rakudo skip 'not yet implemented'
#?rakudo skip 'NYI'
{
multi sub infix:<foo>($a, $b) {$a + $b};
my $x foo=6;
is $x, 6, 'foo= works for custom operators';
}
#?rakudo skip 'not yet implemented'
#?rakudo skip 'NYI'
{
our sub infix:<bar>($a, $b) {$a + $b};
Expand Down
2 changes: 1 addition & 1 deletion S15-unicode-information/uniname.t
Expand Up @@ -42,5 +42,5 @@ is uniname("¶", :either :one), "PARAGRAPH SIGN", "uniname(:eithe
is uniname("\x[2028]", :either :one), "LINE SEPARATOR", "uniname(:either :one) returns current Unicode name for formatting character.";
is uniname("\x[80]", :either :one), "<control-0080>", "uniname(:either :one) returns codepoint label for control character without any name.";

#?rakudo skip "uninames does not exist"
#?rakudo skip "uninames NYI"
is uninames("AB"), ("LATIN CAPITAL LETTER A", "LATIN CAPITAL LETTER B"), "uninames correctly works on every character";

0 comments on commit 3c9bf20

Please sign in to comment.