mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
Merge-request: IJ-MR-108198 Merged-by: Egor Eliseev <Egor.Eliseev@jetbrains.com> GitOrigin-RevId: dfd6501f64be944bff21621bce6ef45218912337
8 lines
183 B
Python
8 lines
183 B
Python
import pytest
|
|
|
|
@pytest.fixture
|
|
def some_fixture():
|
|
return 'fixture from test_root.py'
|
|
|
|
def test_simple(some_<caret>fixture):
|
|
assert some_fixture == 'fixture from test_root.py' |