forked from VimPlug/jedi
Merge with master again
Some bugs were still present in master
This commit is contained in:
@@ -12,7 +12,7 @@ from jedi.api.environment import Environment
|
||||
def test_paths_from_assignment(Script):
|
||||
def paths(src):
|
||||
script = Script(src, path='/foo/bar.py')
|
||||
expr_stmt = script._get_module_node().children[0]
|
||||
expr_stmt = script._module_node.children[0]
|
||||
return set(sys_path._paths_from_assignment(script._get_module(), expr_stmt))
|
||||
|
||||
assert paths('sys.path[0:0] = ["a"]') == {'/foo/a'}
|
||||
|
||||
Reference in New Issue
Block a user