mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 23:52:23 +07:00
Merge-request: IJ-MR-173095 Merged-by: Morgan Bartholomew <morgan.bartholomew@jetbrains.com> GitOrigin-RevId: f4a8479b755d71cd2932176acce98f4d2f8aaba5
13 lines
157 B
Python
13 lines
157 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def my_fixture():
|
|
return True
|
|
|
|
|
|
@pytest.mark.usefixtures("<caret>")
|
|
class TestSuite:
|
|
def test_abc(self):
|
|
...
|