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

commit f9f3d3c6241d9f6eee2f14e789eaaa165899aded
Author: kyle <k...@c213334d-75ef-0310-aa23-eaa082d1ae64>
Date:   Tue Dec 29 17:02:16 2009 +0000

    [t/spec] Test for RT 71704: "x !! y" should be a parse error
    
    git-svn-id: http://svn.pugscode.org/p...@29416 
c213334d-75ef-0310-aa23-eaa082d1ae64

diff --git a/t/spec/S03-operators/ternary.t b/t/spec/S03-operators/ternary.t
index 86ff84f..99cae05 100644
--- a/t/spec/S03-operators/ternary.t
+++ b/t/spec/S03-operators/ternary.t
@@ -4,7 +4,7 @@ use Test;
 
 #Ternary operator ?? !!
 
-plan 16;
+plan *;
 #L<S03/Changes to Perl 5 operators/"The ? : conditional operator becomes ?? 
!!">
 
 my $str1 = "aaa";
@@ -69,4 +69,9 @@ is((4 or 5 ?? 6 !! 7), 4, "operator priority");
 
 eval_dies_ok q[ 1 ?? 2,3 !! 4,5 ], 'Ternary error (RT 66840)';
 
+#?rakudo todo 'RT 71704: "x !! y" should be a parse error'
+eval_dies_ok q[ 71704 !! 'bust' ], 'Ternary error (RT 71704)';
+
+done_testing;
+
 # vim: ft=perl6

Reply via email to