2013-04-20 22:11:53 +02:00
|
|
|
from hy.importer import import_file_to_module, import_buffer_to_ast
|
2013-04-02 04:13:45 +02:00
|
|
|
import ast
|
2013-03-04 01:40:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_basics():
|
2013-03-06 04:15:45 +01:00
|
|
|
"Make sure the basics of the importer work"
|
2013-04-06 21:22:35 +02:00
|
|
|
import_file_to_module("basic",
|
|
|
|
"tests/resources/importer/basic.hy")
|
2013-04-02 04:13:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
def test_stringer():
|
|
|
|
"Make sure the basics of the importer work"
|
2013-05-16 15:34:14 +02:00
|
|
|
_ast = import_buffer_to_ast("(defn square [x] (* x x))", '')
|
2013-04-02 04:13:45 +02:00
|
|
|
assert type(_ast.body[0]) == ast.FunctionDef
|