mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-09 23:34:45 +08:00
forgot to write a test for #293
This commit is contained in:
@@ -29,6 +29,8 @@ class TestSetupReadline(TestCase):
|
|||||||
def test_simple(self):
|
def test_simple(self):
|
||||||
assert self.completions('list') == ['list']
|
assert self.completions('list') == ['list']
|
||||||
assert self.completions('importerror') == ['ImportError']
|
assert self.completions('importerror') == ['ImportError']
|
||||||
|
s = "print BaseE"
|
||||||
|
assert self.completions(s) == [s + 'xception']
|
||||||
|
|
||||||
def test_nested(self):
|
def test_nested(self):
|
||||||
assert self.completions('list.Insert') == ['list.insert']
|
assert self.completions('list.Insert') == ['list.insert']
|
||||||
|
|||||||
Reference in New Issue
Block a user