1
0
forked from VimPlug/jedi
Files
jedi-fork/test/refactor/rename.py
2020-01-22 01:06:37 +01:00

18 lines
295 B
Python

"""
Test coverage for renaming is mostly being done by testing
`Script.get_references`.
"""
# --- simple
def test1():
#? 7 blabla
test1()
AssertionError
return test1, test1.not_existing
# +++
def blabla():
blabla()
AssertionError
return blabla, blabla.not_existing