This is an automatically generated mail to inform you that tests are now
available in t/spec/S03-operators/series-simple.t
commit b3d941a4f9a902c1b2fa7619dd68f832a2fbb802
Author: mmcleric <mmcle...@c213334d-75ef-0310-aa23-eaa082d1ae64>
Date: Sat Jun 12 15:53:47 2010 +0000
test for RT#74990
git-svn-id: http://svn.pugscode.org/p...@31218
c213334d-75ef-0310-aa23-eaa082d1ae64
diff --git a/t/spec/S03-operators/series-simple.t
b/t/spec/S03-operators/series-simple.t
index 5c74ad4..46653ba 100644
--- a/t/spec/S03-operators/series-simple.t
+++ b/t/spec/S03-operators/series-simple.t
@@ -73,4 +73,8 @@ is ('c', { $_ } ... *).batch(10).join(', '), 'c, c, c, c, c,
c, c, c, c, c', 'se
is ('c', 'c' ... *).batch(10).join(', '), 'c, c, c, c, c, c, c, c, c, c',
'series started with two identical letters';
is ('c', 'c', 'c' ... *).batch(10).join(', '), 'c, c, c, c, c, c, c, c, c, c',
'series started with three identical letters';
-done_testing;
\ No newline at end of file
+# tests for alphabetical series crossing 'z'
+#?rakudo 1 todo "RT#74990: Series of letters doesn't stop at end point"
+is ('x' ... 'z').join(', '), 'x, y, z', "series ending with 'z' don't cross to
two-letter strings";
+
+done_testing;