(self)
| 252 | self.assertEqual('Band', user['nickname']) |
| 253 | |
| 254 | def test_get_followers(self): |
| 255 | with HTTMock(wechat_api_mock): |
| 256 | result = self.client.user.get_followers() |
| 257 | self.assertEqual(2, result['total']) |
| 258 | self.assertEqual(2, result['count']) |
| 259 | |
| 260 | def test_iter_followers(self): |
| 261 | @urlmatch(netloc=r'(.*\.)?api\.weixin\.qq\.com$', query=r'.*next_openid=[^&]+') |
nothing calls this directly
no test coverage detected