()
| 13 | |
| 14 | @pytest.fixture |
| 15 | def slack_channels_data_response(): # type: ignore[no-untyped-def] |
| 16 | channels = [SlackChannel("name1", "id1"), SlackChannel("name2", "id2")] |
| 17 | return ChannelsDataResponse(channels=channels, cursor="test_cursor") |
| 18 | |
| 19 | |
| 20 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…