forked from VimPlug/jedi
goto tests, which i previously forgot to commit
This commit is contained in:
69
test/completion/goto.py
Normal file
69
test/completion/goto.py
Normal file
@@ -0,0 +1,69 @@
|
||||
# goto command test are a different in syntax
|
||||
|
||||
a = 1
|
||||
|
||||
#! []
|
||||
b
|
||||
#! ['a=1']
|
||||
a
|
||||
|
||||
b = a
|
||||
c = b
|
||||
#! ['c=b']
|
||||
c
|
||||
|
||||
#! ['module math']
|
||||
import math
|
||||
#! ['import math']
|
||||
math
|
||||
|
||||
#! ['import math']
|
||||
b = math
|
||||
#! ['b=math']
|
||||
b
|
||||
|
||||
class C(object):
|
||||
def b(self):
|
||||
#! ['b=math']
|
||||
b
|
||||
#! ['def b']
|
||||
self.b
|
||||
#! 14 ['def b']
|
||||
self.b()
|
||||
#! 11 ['class C']
|
||||
self.b
|
||||
return 1
|
||||
|
||||
#! ['def b']
|
||||
b
|
||||
|
||||
#! ['b=math']
|
||||
b
|
||||
|
||||
#! ['def b']
|
||||
C.b
|
||||
#! ['def b']
|
||||
C().b
|
||||
#! 0 ['class C']
|
||||
C().b
|
||||
#! 0 ['class C']
|
||||
C().b
|
||||
|
||||
D = C
|
||||
#! ['def b']
|
||||
D.b
|
||||
#! ['def b']
|
||||
D().b
|
||||
|
||||
#! 0 ['D=C']
|
||||
D().b
|
||||
#! 0 ['D=C']
|
||||
D().b
|
||||
|
||||
def c():
|
||||
return ''
|
||||
|
||||
#! ['def c']
|
||||
c
|
||||
#! 0 ['def c']
|
||||
c()
|
||||
Reference in New Issue
Block a user