1
0
forked from VimPlug/jedi

Remove use_filesystem_cache and additional_dynamic_modules, it hasn't been implemented for a long time

This commit is contained in:
Dave Halter
2020-01-23 23:17:26 +01:00
parent cc8a3f192d
commit 290e2151df
3 changed files with 3 additions and 24 deletions

View File

@@ -23,17 +23,6 @@ def test_auto_import_modules_imports(auto_import_json, Script):
assert isinstance(main._name, CompiledValueName)
def test_additional_dynamic_modules(monkeypatch, Script):
# We could add further tests, but for now it's even more important that
# this doesn't fail.
monkeypatch.setattr(
settings,
'additional_dynamic_modules',
['/foo/bar/jedi_not_existing_file.py']
)
assert not Script('def some_func(f):\n f.').complete()
def test_cropped_file_size(monkeypatch, get_names, Script):
code = 'class Foo(): pass\n'
monkeypatch.setattr(