LANGUAGE » PYTHON » PYTEST
Fixtures
Last updated:
Reference:
docs.pytest.org
Usage
Creating custom fixtures
python
import
pytest
@pytest.fixture
def
some_list
():
return
[
1
,
2
,
3
]
Theme
Links
Home
Back to top