mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
Merge-request: IJ-MR-181090 Merged-by: Egor Eliseev <Egor.Eliseev@jetbrains.com> GitOrigin-RevId: 24276544dc2d1111f173b6e16c7abb328f1d5632
19 lines
384 B
Python
19 lines
384 B
Python
# Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def number_of_things():
|
|
return 1
|
|
|
|
|
|
@pytest.fixture
|
|
def actual_fixture(number_of_things):
|
|
return range(number_of_things)
|
|
|
|
|
|
@pytest.mark.parametrize("number_of_things", [2])
|
|
def test_something_else(actual_fixture):
|
|
pass
|