Changeset 12962

Show
Ignore:
Timestamp:
09/03/06 00:38:37 (2 years ago)
Author:
markstos
Message:

rename pipe operator to feed in test suite and remove that from t/TASKS

Location:
t
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • t/TASKS

    r12435 r12962  
    22* update t/syntax/char_by_number.t to conform with the lastest S02. 
    33* fix the broken smart links (L<..>) in the test suite via util/smartlinks.pl. 
    4 * rename pipe operator to feed operator. 
  • t/operators/pipe.t

    r12370 r12962  
    55=pod 
    66 
    7 Tests for the pipe operators  
     7Tests for the feed operators  
    88 
    99    ==> and <==  
     
    2424    #Fail: cannot cast into a handle: VList [VInt 1,VInt 2] 
    2525 
    26     is(~@b, ~@a, "ltr pipe as simple assignment", :todo); 
    27     is(~@c, ~@a, "rtl pipe as simple assignment", :todo); 
     26    is(~@b, ~@a, "ltr feed as simple assignment", :todo); 
     27    is(~@c, ~@a, "rtl feed as simple assignment", :todo); 
    2828}; 
    2929 
     
    5353 
    5454    is($got_x, "x", "x was passed as explicit param", :todo); 
    55     is($got_y, undef, "optional param y was not bound to piped list"); 
     55    is($got_y, undef, "optional param y was not bound to fed list"); 
    5656    is(~@got_z, ~@a, '...slurpy array *@z got it', :todo); 
    5757};