1
0
forked from VimPlug/jedi

More fixes for ExprStmt docstrings.

This commit is contained in:
Dave Halter
2015-03-03 18:08:24 +01:00
parent 40e61fc96d
commit 1ce96f2581
2 changed files with 9 additions and 3 deletions

View File

@@ -129,6 +129,11 @@ def test_completion_docstring():
docstr('import jedi\njedi.Scr', cleandoc(Script.__doc__))
docstr('abcd=3;abcd', '')
docstr('"hello"\nabcd=3\nabcd', 'hello')
# It works with a ; as well.
docstr('"hello"\nabcd=3;abcd', 'hello')
# Shouldn't work with a tuple.
docstr('"hello",0\nabcd=3\nabcd', '')
def test_completion_params():