reorganizing test fixtures and adding range literals for array slices

This commit is contained in:
Jeremy Ashkenas
2009-12-25 16:20:28 -08:00
parent 62485c2b8c
commit 1ba7c77136
21 changed files with 46 additions and 22 deletions

View File

@@ -22,6 +22,6 @@ func: =>
c.list: l for l in d.text.split('') if l is '-'.
c.single: c.list[1, 1][0].
c.single: c.list[1..1][0].
print(func() == '-')

View File