mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
(cherry picked from commit 202d5a6aadd282fb5144d16039e5661c22d567ec) GitOrigin-RevId: c290897d0eff63f4e4192d7368c272e9a4e73ba8
13 lines
186 B
Python
13 lines
186 B
Python
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def fixture():
|
|
# noinspection PyStatementEffect
|
|
1 / 0
|
|
return "Hello, World"
|
|
|
|
|
|
def test_example(fixture):
|
|
assert fixture == "Hello, World"
|