1
0
forked from VimPlug/jedi

Forgot to include this file in previous commits.

This commit is contained in:
Dave Halter
2016-07-24 17:17:03 +02:00
parent ff47fab62a
commit 7ec957e918

View File

@@ -0,0 +1,9 @@
from textwrap import dedent
from jedi import Script
def test_in_whitespace():
code = dedent('''
def x():
pass''')
assert len(Script(code, column=2).completions()) > 20