| 156 | |
| 157 | |
| 158 | class SharedUserTestBase: |
| 159 | user_id = 101112 |
| 160 | first_name = "first" |
| 161 | last_name = "last" |
| 162 | username = "user" |
| 163 | photo = ( |
| 164 | PhotoSize(file_id="file_id", width=1, height=1, file_unique_id="1"), |
| 165 | PhotoSize(file_id="file_id", width=2, height=2, file_unique_id="2"), |
| 166 | ) |
| 167 | |
| 168 | |
| 169 | class TestSharedUserWithoutRequest(SharedUserTestBase): |
nothing calls this directly
no test coverage detected
searching dependent graphs…