hy/tests/lexer/test_list_lexing.py

23 lines
463 B
Python
Raw Normal View History

2012-12-16 00:20:15 +01:00
from hy.lex.tokenize import tokenize
def test_list_lex():
fn = tokenize("(fn [1 2 3 4])")[0]
assert fn == [
"fn", ["1", "2", "3", "4"]
]
2012-12-16 00:24:06 +01:00
def test_list_recurse():
fn = tokenize("(fn [1 2 3 4 [5 6 7]])")[0]
assert fn == [
"fn", ["1", "2", "3", "4", ["5", "6", "7"]]
]
def test_double_rainbow():
fn = tokenize("(fn [1 2 3 4] [5 6 7])")[0]
assert fn == [
"fn", ["1", "2", "3", "4"], ["5", "6", "7"]
]