d5bf328aa7
Add comments to the functions, reorder, make the file clearer
38 lines
1.1 KiB
Python
38 lines
1.1 KiB
Python
|
|
from hy.macros import macro, macroexpand
|
|
from hy.lex import tokenize
|
|
|
|
from hy.models.string import HyString
|
|
from hy.models.list import HyList
|
|
from hy.models.symbol import HySymbol
|
|
from hy.models.expression import HyExpression
|
|
|
|
|
|
@macro("test")
|
|
def tmac(*tree):
|
|
""" Turn an expression into a list """
|
|
return HyList(tree)
|
|
|
|
|
|
def test_preprocessor_simple():
|
|
""" Test basic macro expansion """
|
|
obj = macroexpand(tokenize('(test "one" "two")')[0], __name__)
|
|
assert obj == HyList(["one", "two"])
|
|
assert type(obj) == HyList
|
|
|
|
|
|
def test_preprocessor_expression():
|
|
""" Test that macro expansion doesn't recurse"""
|
|
obj = macroexpand(tokenize('(test (test "one" "two"))')[0], __name__)
|
|
|
|
assert type(obj) == HyList
|
|
assert type(obj[0]) == HyExpression
|
|
|
|
assert obj[0] == HyExpression([HySymbol("test"),
|
|
HyString("one"),
|
|
HyString("two")])
|
|
|
|
obj = HyList([HyString("one"), HyString("two")])
|
|
obj = tokenize('(shill ["one" "two"])')[0][1]
|
|
assert obj == macroexpand(obj, '')
|