1
0
forked from VimPlug/jedi

Fix some issues in call signatures.

This commit is contained in:
Dave Halter
2015-02-24 16:55:33 +01:00
parent b8386d29d5
commit 48392a7dac
3 changed files with 21 additions and 2 deletions

View File

@@ -175,7 +175,13 @@ class TestCallSignatures(TestCase):
self._run('str(";', 'str', 0)
def test_whitespace_before_bracket(self):
self._run('str (', 'str', 0)
self._run('str (";', 'str', 0)
self._run('str\n(', 'str', 0)
def test_brackets_in_string_literals(self):
self._run('str (" (', 'str', 0)
self._run('str (" )', 'str', 0)
class TestParams(TestCase):