pyodide/packages/jedi/test_jedi.py

11 lines
348 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(selenium_fixture_name="selenium_standalone", packages=["jedi"])
2021-01-11 17:25:55 +00:00
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"]