This is an automatically generated mail to inform you that tests are now 
available in t/spec/S03-operators/series.t

commit 095f18e9b4d06aaf9c797bbbb100a5f07838928d
Author: moritz <mor...@c213334d-75ef-0310-aa23-eaa082d1ae64>
Date:   Tue Aug 24 09:24:24 2010 +0000

    [t/spec] test for RT #75828, series operator after comma is caught
    
    git-svn-id: http://svn.pugscode.org/p...@32097 
c213334d-75ef-0310-aa23-eaa082d1ae64

diff --git a/t/spec/S03-operators/series.t b/t/spec/S03-operators/series.t
index d923c1c..9119214 100644
--- a/t/spec/S03-operators/series.t
+++ b/t/spec/S03-operators/series.t
@@ -3,7 +3,7 @@ use Test;
 
 # L<S03/List infix precedence/"the series operator">
 
-plan 121;
+plan 122;
 
 # single-term series
 
@@ -225,6 +225,9 @@ is (1, +* ... *).[^5].join('|'), (1 xx 5).join('|'),
 # RT #75768
 is ~(1...10)[2...4], '3 4 5', 'can index series with series';
 
+# RT #75828
+eval_dies_ok '1, 2, 3, ... 5', 'comma before series operator is caught';
+
 done_testing;
 
 # vim: ft=perl6

Reply via email to