hy/tests/importer/test_importer.py

11 lines
257 B
Python
Raw Normal View History

2013-03-04 01:40:46 +01:00
from hy.importer import import_file_to_module
# import_file_to_module
def test_basics():
2013-03-06 04:15:45 +01:00
"Make sure the basics of the importer work"
2013-03-04 01:40:46 +01:00
module = import_file_to_module("basic",
"tests/resources/importer/basic.hy")