mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 22:44:27 +08:00
Fix a few more tests that where not correctly written a while ago.
This commit is contained in:
@@ -87,7 +87,7 @@ class TestInterpreterAPI(TestCase):
|
|||||||
|
|
||||||
def test_complete_raw_module(self):
|
def test_complete_raw_module(self):
|
||||||
import os
|
import os
|
||||||
self.check_interpreter_complete('os.path.join().up',
|
self.check_interpreter_complete('os.path.join("a").up',
|
||||||
locals(),
|
locals(),
|
||||||
['upper'])
|
['upper'])
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ class TestSetupReadline(unittest.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"
|
s = "print(BaseE"
|
||||||
assert self.completions(s) == [s + 'xception']
|
assert self.completions(s) == [s + 'xception']
|
||||||
|
|
||||||
def test_nested(self):
|
def test_nested(self):
|
||||||
@@ -53,7 +53,8 @@ class TestSetupReadline(unittest.TestCase):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
assert self.completions('os.path.join') == ['os.path.join']
|
assert self.completions('os.path.join') == ['os.path.join']
|
||||||
assert self.completions('os.path.join().upper') == ['os.path.join().upper']
|
string = 'os.path.join("a").upper'
|
||||||
|
assert self.completions(string) == [string]
|
||||||
|
|
||||||
c = set(['os.' + d for d in dir(os) if d.startswith('ch')])
|
c = set(['os.' + d for d in dir(os) if d.startswith('ch')])
|
||||||
assert set(self.completions('os.ch')) == set(c)
|
assert set(self.completions('os.ch')) == set(c)
|
||||||
|
|||||||
Reference in New Issue
Block a user