combine python files (#256)

This commit is contained in:
Harrison Chase
2022-12-04 15:57:36 -08:00
committed by GitHub
parent 98fb19b535
commit f5c665a544
8 changed files with 21 additions and 76 deletions
+8
View File
@@ -32,3 +32,11 @@ def test_python_repl_pass_in_locals() -> None:
repl = PythonREPL(_locals=_locals)
repl.run("bar = foo * 2")
assert repl._locals["bar"] == 8
def test_functionality() -> None:
"""Test correct functionality."""
chain = PythonREPL()
code = "print(1 + 1)"
output = chain.run(code)
assert output == "2\n"