hy/tests/importer/test_importer.py
Paul R. Tagliamonte b077af9620 more tests
2013-04-01 22:13:45 -04:00

15 lines
445 B
Python

from hy.importer import import_file_to_module, import_string_to_ast
import ast
def test_basics():
"Make sure the basics of the importer work"
module = import_file_to_module("basic",
"tests/resources/importer/basic.hy")
def test_stringer():
"Make sure the basics of the importer work"
_ast = import_string_to_ast("(defn square [x] (* x x))")
assert type(_ast.body[0]) == ast.FunctionDef