mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 12:17:12 +07:00
Add 'PyTestReferenceAsStringProvider' for fixtures from pytest.mark.usefixtures attributes. Add new field 'myTextRange' to 'BaseReference' class. It's needed for specify the text range for proper highlighting. For example, to highlight text in a string without quotes. GitOrigin-RevId: 5b9094169b71dd57d9091d6907346ca69f631ef3
74 lines
582 B
Python
74 lines
582 B
Python
@fixture
|
|
def cache():
|
|
pass
|
|
|
|
|
|
@fixture
|
|
def capfd():
|
|
pass
|
|
|
|
|
|
@fixture
|
|
def capfdbinary():
|
|
pass
|
|
|
|
|
|
@fixture
|
|
def caplog():
|
|
pass
|
|
|
|
|
|
@fixture
|
|
def capsys():
|
|
pass
|
|
|
|
|
|
@fixture
|
|
def capsysbinary():
|
|
pass
|
|
|
|
|
|
@fixture
|
|
def doctest_namespace():
|
|
pass
|
|
|
|
|
|
@fixture
|
|
def monkeypatch():
|
|
pass
|
|
|
|
|
|
@fixture
|
|
def pytestconfig():
|
|
pass
|
|
|
|
|
|
@fixture
|
|
def pytester():
|
|
pass
|
|
|
|
|
|
@fixture
|
|
def record_property():
|
|
pass
|
|
|
|
|
|
@fixture
|
|
def record_testsuite_property():
|
|
pass
|
|
|
|
|
|
@fixture
|
|
def recwarn():
|
|
pass
|
|
|
|
|
|
@fixture
|
|
def tmp_path():
|
|
pass
|
|
|
|
|
|
@fixture
|
|
def tmp_path_factory():
|
|
pass
|