Changeset 22008
- Timestamp:
- 08/22/08 16:18:12 (3 months ago)
- Files:
-
- 1 moved
-
t/spec/S02-literals/array-interpolation.t (moved) (moved from t/syntax/interpolation/arrays.t) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
t/spec/S02-literals/array-interpolation.t
r20490 r22008 10 10 # @foo.as(Str) are the same as join(' ', @foo) where join is effectively: 11 11 12 plan 1 0;12 plan 12; 13 13 14 14 { … … 19 19 is "@array[]", "a b c d", 20 20 "arrays whose elements don't contain whitespace stringify correctly (2)"; 21 is "@array.[]", "a b c d", 22 '@array.[] interpolates'; 23 is "@array", "@array", '@array (without brackets) doesnt interpolate'; 21 24 } 22 25
