1
0
forked from VimPlug/jedi

Make sure you can search for 'def something'

This commit is contained in:
Dave Halter
2020-03-06 14:27:29 +01:00
parent c7a862ec19
commit 8c1e518ab7
2 changed files with 6 additions and 0 deletions

View File

@@ -61,6 +61,10 @@ def test_load_save_project(tmpdir):
('sample_int', ['helpers.sample_int'], {}),
('sample_int', ['helpers.sample_int'], dict(all_scopes=True)),
('sample_int.real', ['builtins.int.real'], {}),
('class sample_int.real', [], {}),
('function sample_int.real', ['builtins.int.real'], {}),
('def sample_int.real', ['builtins.int.real'], {}),
]
)
@pytest.mark.skipif(sys.version_info < (3, 6), reason="Ignore Python 2, because EOL")