(mocker)
| 16 | |
| 17 | @pytest.fixture(name="ctx") |
| 18 | def context(mocker): |
| 19 | connection = mocker.MagicMock() |
| 20 | selections = deque(Field("T", f, {}) for f in ("one", "two", "three")) |
| 21 | return Context(connection, selections) |
| 22 | |
| 23 | |
| 24 | def test_none(ctx: Context): |