1
0
forked from VimPlug/jedi

finished testing script for refactoring

This commit is contained in:
David Halter
2013-01-06 17:35:55 +01:00
parent 48c04b2fcd
commit 37bbf1af1a
3 changed files with 35 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
# --- a
# --- simple
def test():
#? 25 a
return test(1, (30 + b, c) + 1)
@@ -10,8 +10,9 @@ def test():
# --- multiline
def test():
#? 30 x
return test(1, (30 + b, c) + 1)
# +++
def test():
a = (30 + b, c) + 1
return test(a)
x = (30 + b, c) + 1
return test(x)