Skip to content

Commit 666916d

Browse files
ruberVulpesseratch
authored andcommitted
added entries for admin_conversations_restrict_access_*
1 parent d97b65f commit 666916d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tests/web/test_web_client_coverage.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -622,6 +622,15 @@ async def test_coverage(self):
622622
elif method_name == "mpim_replies":
623623
self.api_methods_to_call.remove(method(channel="D123", thread_ts="123.123")["method"])
624624
await async_method(channel="D123", thread_ts="123.123")
625+
elif method_name == "admin_conversations_restrictAccess_addGroup":
626+
self.api_methods_to_call.remove(method(channel_id="D123", group_id="G123")["method"])
627+
await async_method(channel_id="D123", group_id="G123")
628+
elif method_name == "admin_conversations_restrictAccess_listGroups":
629+
self.api_methods_to_call.remove(method(channel_id="D123", group_id="G123")["method"])
630+
await async_method(channel_id="D123", group_id="G123")
631+
elif method_name == "admin_conversations_restrictAccess_removeGroup":
632+
self.api_methods_to_call.remove(method(channel_id="D123", group_id="G123", team_id="T13")["method"])
633+
await async_method(channel_id="D123", group_id="G123", team_id="T123")
625634
else:
626635
self.api_methods_to_call.remove(method(*{})["method"])
627636
await async_method(*{})

0 commit comments

Comments
 (0)