Skip to content

Commit

Permalink
test that infix Z returns a list of parcels (RT #75818
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Oct 5, 2011
1 parent 044a4a6 commit 64bc53d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions S03-metaops/zip.t
@@ -1,7 +1,7 @@
use v6;

use Test;
plan 19;
plan 20;

ok eval('<a b> Z <c d>'), 'zip non-meta operator parses';

Expand Down Expand Up @@ -52,6 +52,9 @@ is (2, 10, * Z* 3, 4, 5, *).munch(5),
'121,212', '[Z+] with three arrays';
}

done;
# RT #75818
{
isa_ok (1 Z 2)[0], Parcel, 'zip returns a list of parcels';
}

# vim: ft=perl6

0 comments on commit 64bc53d

Please sign in to comment.