(self)
| 503 | self.assertEqual(1, len(result)) |
| 504 | |
| 505 | def test_datacube_get_user_read(self): |
| 506 | with HTTMock(wechat_api_mock): |
| 507 | result = self.client.datacube.get_user_read( |
| 508 | '2014-12-06', |
| 509 | '2014-12-07' |
| 510 | ) |
| 511 | self.assertEqual(1, len(result)) |
| 512 | |
| 513 | def test_datacube_get_user_read_hour(self): |
| 514 | with HTTMock(wechat_api_mock): |
nothing calls this directly
no test coverage detected