Finally got compiled_objects and the access to them working

This commit is contained in:
Dave Halter
2017-11-17 01:42:27 +01:00
parent 73576b2a8b
commit 4a7d715a57
2 changed files with 7 additions and 5 deletions

View File

@@ -33,4 +33,6 @@ def evaluator():
def test_import_module(evaluator):
evaluator.compiled_subprocess.import_module(name='math')
compiled_obj = evaluator.compiled_subprocess.import_module(name='math')
assert compiled_obj.py__bool__() is True
assert compiled_obj.type == 'file_input'