Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
remove lcfirst reference, unfudge
  • Loading branch information
coke committed Aug 4, 2014
1 parent 012b339 commit e9d171f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions S32-str/uc.t
Expand Up @@ -2,7 +2,7 @@ use v6;

use Test;

plan 18;
plan 17;

# L<S32::Str/"Str"/=item uc>

Expand Down Expand Up @@ -49,13 +49,12 @@ is ~(0.uc), ~0, '.uc on Int';
is ~(0.tc), ~0, '.tc on Int';
is ~(0.lc), ~0, '.lc on Int';

#?DOES 4
#?rakudo skip 'but RoleName'
#?DOES 3
{
role A {
has $.thing = 3;
}
for <uc lc tc lcfirst> -> $meth {
for <uc lc tc> -> $meth {
my $str = "('Nothing much' but A).$meth eq 'Nothing much'.$meth";
ok EVAL($str), $str;
}
Expand Down

0 comments on commit e9d171f

Please sign in to comment.