3226ecc33f
Signed-off-by: Julien Danjou <julien@danjou.info>
9 lines
160 B
Python
9 lines
160 B
Python
import subprocess
|
|
|
|
|
|
def test_bin_hy():
|
|
p = subprocess.Popen("echo | bin/hy",
|
|
shell=True)
|
|
p.wait()
|
|
assert p.returncode == 0
|