hy/tests/importer/test_pyc.py

21 lines
468 B
Python
Raw Normal View History

2013-04-13 18:57:54 +02:00
import os
import imp
import tempfile
from hy.importer import write_hy_as_pyc, get_bytecode_path
2013-04-13 18:57:54 +02:00
def test_pyc():
"""Test pyc compilation."""
f = tempfile.NamedTemporaryFile(suffix='.hy', delete=False)
f.write(b'(defn pyctest [s] (+ "X" s "Y"))')
2013-04-13 18:57:54 +02:00
f.close()
write_hy_as_pyc(f.name)
os.remove(f.name)
2013-04-13 18:57:54 +02:00
cfile = get_bytecode_path(f.name)
2013-04-13 18:57:54 +02:00
mod = imp.load_compiled('pyc', cfile)
os.remove(cfile)
2013-04-13 18:57:54 +02:00
assert mod.pyctest('Foo') == 'XFooY'