mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 22:14:27 +08:00
18 lines
296 B
Python
18 lines
296 B
Python
"""
|
|
Test coverage for renaming is mostly being done by testing
|
|
`Script.find_references`.
|
|
"""
|
|
|
|
# --- simple
|
|
def test1():
|
|
#? 7 blabla
|
|
test1()
|
|
AssertionError
|
|
return test1, test1.not_existing
|
|
# +++
|
|
def blabla():
|
|
blabla()
|
|
AssertionError
|
|
return blabla, blabla.not_existing
|
|
|