Fixtures in pytest
Learn how to use fixtures from pytest for testing purposes.
We'll cover the following...
Data parameters work well when we have the data we need to test, or we know how to build it easily, but in some cases, we need specific objects to be constructed for a test, or we find ourself writing or building the same objects repeatedly. To help with this, we can use fixtures.
Working with fixtures
Fixtures in pytest
are functions or methods decorated with @pytest.fixture
...