Changeset 22008

Show
Ignore:
Timestamp:
08/22/08 16:18:12 (3 months ago)
Author:
moritz
Message:

[t] move interpolation tests to spec/, add a few. clintongormley++.

Files:
1 moved

Legend:

Unmodified
Added
Removed
  • t/spec/S02-literals/array-interpolation.t

    r20490 r22008  
    1010#   @foo.as(Str) are the same as join(' ', @foo) where join is effectively: 
    1111 
    12 plan 10; 
     12plan 12; 
    1313 
    1414{ 
     
    1919  is "@array[]", "a b c d", 
    2020    "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'; 
    2124} 
    2225