Changeset 12962
- Timestamp:
- 09/03/06 00:38:37 (2 years ago)
- Location:
- t
- Files:
-
- 2 modified
-
TASKS (modified) (1 diff)
-
operators/pipe.t (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
t/TASKS
r12435 r12962 2 2 * update t/syntax/char_by_number.t to conform with the lastest S02. 3 3 * 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 5 5 =pod 6 6 7 Tests for the pipeoperators7 Tests for the feed operators 8 8 9 9 ==> and <== … … 24 24 #Fail: cannot cast into a handle: VList [VInt 1,VInt 2] 25 25 26 is(~@b, ~@a, "ltr pipeas simple assignment", :todo);27 is(~@c, ~@a, "rtl pipeas simple assignment", :todo);26 is(~@b, ~@a, "ltr feed as simple assignment", :todo); 27 is(~@c, ~@a, "rtl feed as simple assignment", :todo); 28 28 }; 29 29 … … 53 53 54 54 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"); 56 56 is(~@got_z, ~@a, '...slurpy array *@z got it', :todo); 57 57 };
