pyodide/packages/jedi/test_jedi.py

11 lines
320 B
Python
Raw Normal View History

from pyodide_test_runner import run_in_pyodide
2021-01-11 17:25:55 +00:00
@run_in_pyodide(standalone=True, packages=["jedi"])
def test_jedi():
import jedi
script = jedi.Script("import json\njson.lo", path="example.py")
completions = script.complete(2, len("json.lo"))
assert [el.name for el in completions] == ["load", "loads"]