Changeset 22583 for t

Show
Ignore:
Timestamp:
10/11/08 17:41:16 (6 weeks ago)
Author:
moritz
Message:

[t/spec] tests for [\$op] with right assoc $op

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S03-operators/reduce-metaop.t

    r22003 r22583  
    11use v6; 
    22use Test; 
    3 plan 50; 
     3plan 52; 
    44 
    55=begin pod 
     
    5555    is ([~] [\!=]  4, 5, 6),   "1 1 1",   "[\\!=] works (1)"; 
    5656    is ([~] [\!=]  4, 5, 4),   "1 0 0",   "[\\!=] works (2)"; 
     57    is ([~] [\**]  1, 2, 3),   "3 8 1",   "[\\**] (right assoc) works (1)"; 
     58    is ([~] [\**]  3, 2, 0),   "0 1 3",   "[\\**] (right assoc) works (2)"; 
    5759} 
    5860