Commit 09485948 authored by Łukasz Nowak's avatar Łukasz Nowak

- check that generated python act as real interpreter


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@34197 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent cdf3f66a
......@@ -44,6 +44,14 @@ print sys.version_info[:2]
finally:
os.unlink(name)
def test_use_generated_python_as_normal_interpreter(self):
"""
TODO: Add doc string.
"""
stdout, stderr = subprocess.Popen([sys.executable, '-V'],
stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
self.assertTrue('2.4' in stderr)
def test_required_libraries(self):
"""
TODO: Add doc string.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment