Build a ``Search`` instance whose parsers can be exercised without talking to Redis.
()
| 107 | |
| 108 | |
| 109 | def _make_search(): |
| 110 | """Build a ``Search`` instance whose parsers can be exercised without |
| 111 | talking to Redis.""" |
| 112 | client = MagicMock() |
| 113 | return Search(client) |
| 114 | |
| 115 | |
| 116 | @pytest.mark.fixed_client |
no test coverage detected