Fixture that returns the OkSmall instance when called, an instance with just 4 clients that's easy to understand.
()
| 6 | |
| 7 | @pytest.fixture(scope="session") |
| 8 | def ok_small(): |
| 9 | """ |
| 10 | Fixture that returns the OkSmall instance when called, an instance with |
| 11 | just 4 clients that's easy to understand. |
| 12 | """ |
| 13 | return read("data/OkSmall.txt") |
| 14 | |
| 15 | |
| 16 | @pytest.fixture(scope="session") |