(patch_chat)
| 88 | |
| 89 | @pytest.fixture() |
| 90 | def patch_chat_member(patch_chat): |
| 91 | mocked_chat = patch_chat.self.copy() |
| 92 | mocked_chat.verify = mock.Mock() |
| 93 | return mocked_chat |
| 94 | |
| 95 | |
| 96 | def test_verify_different_author_and_chat(patch_chat, patch_chat_member, master_channel): |