fREW Schmidt wrote:
> I'd like to get started adding these:
> 
> is capitalize(:string($a)), "Pugs Is Cool!", "capitalize works with named
> arg"
> 
> rakudo and pugs both fail this test.  Should I add it anyway?

Yes. We have a mechanism for skipping tests that the implementations
fail. Just write it like this:

#?rakudo skip 'access positional parameters by name'
#?pugs skip 'access positional parameters by name'
{
   # your tests here
}

(If you have just one test, you don't need to braces)

>  And should I
> just mail patches to rakudo...@perl.org?

In general if you find a bug: yes.
In this case not, because it's a known limitation.

Cheers,
Moritz

Reply via email to