dot_files/bundle/jedi-vim/jedi/test/refactor/rename.py

18 lines
287 B
Python
Raw Normal View History

2017-07-09 00:19:01 +03:00
"""
Test coverage for renaming is mostly being done by testing
`Script.usages`.
"""
# --- simple
def test1():
#? 7 blabla
test1()
AssertionError
return test1, test1.not_existing
# +++
def blabla():
blabla()
AssertionError
return blabla, blabla.not_existing