This is an automatically generated mail to inform you that tests are now available in t/spec/S03-operators/nesting.t
commit 1e56508ad5008b7c0d0426c54d7d7028c560b7ae Author: kyle <k...@c213334d-75ef-0310-aa23-eaa082d1ae64> Date: Sat Aug 1 04:30:31 2009 +0000 [t/spec] Tests for RT #68008 git-svn-id: http://svn.pugscode.org/p...@27828 c213334d-75ef-0310-aa23-eaa082d1ae64 diff --git a/t/spec/S03-operators/nesting.t b/t/spec/S03-operators/nesting.t new file mode 100644 index 0000000..07cf87c --- /dev/null +++ b/t/spec/S03-operators/nesting.t @@ -0,0 +1,10 @@ +use v6; +use Test; + +plan 2; + +# L<S03/Meta operators/Nesting of metaoperators/Any infix function may be referred to as a noun either by the normal long form or a short form> + +#?rakudo 2 skip 'RT #68008' +ok &infix:<+> === &[+], 'long and short form are the same'; +is sort( &[<=>], <5 3 2 1 4> ), <1 2 3 4 5>, 'sort works using &[<=>]';