(bot, time)
| 37 | |
| 38 | @pytest.fixture(scope="module") |
| 39 | def chat_join_request(bot, time): |
| 40 | cjr = ChatJoinRequest( |
| 41 | chat=ChatJoinRequestTestBase.chat, |
| 42 | from_user=ChatJoinRequestTestBase.from_user, |
| 43 | date=time, |
| 44 | bio=ChatJoinRequestTestBase.bio, |
| 45 | invite_link=ChatJoinRequestTestBase.invite_link, |
| 46 | user_chat_id=ChatJoinRequestTestBase.from_user.id, |
| 47 | ) |
| 48 | cjr.set_bot(bot) |
| 49 | return cjr |
| 50 | |
| 51 | |
| 52 | class ChatJoinRequestTestBase: |
nothing calls this directly
no test coverage detected
searching dependent graphs…