mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
29 lines
768 B
Python
29 lines
768 B
Python
"""
|
|
Test of keywords and ``jedi.keywords``
|
|
"""
|
|
import jedi
|
|
from jedi import Script, common
|
|
|
|
|
|
def test_goto_assignments_keyword():
|
|
"""
|
|
Bug: goto assignments on ``in`` used to raise AttributeError::
|
|
|
|
'unicode' object has no attribute 'generate_call_path'
|
|
"""
|
|
Script('in').goto_assignments()
|
|
|
|
|
|
def test_keyword():
|
|
""" github jedi-vim issue #44 """
|
|
defs = Script("print").goto_definitions()
|
|
assert [d.doc for d in defs]
|
|
|
|
defs = Script("import").goto_assignments()
|
|
assert len(defs) == 0
|
|
completions = Script("import", 1, 1).completions()
|
|
assert len(completions) == 0
|
|
with common.ignored(jedi.NotFoundError): # TODO shouldn't throw that.
|
|
defs = Script("assert").goto_definitions()
|
|
assert len(defs) == 1
|