(self)
| 44 | super().setUp() |
| 45 | |
| 46 | def testSearchUsers(self): |
| 47 | users = self.g.search_users("vincent", sort="followers", order="desc") |
| 48 | self.assertEqual(users.totalCount, 2781) |
| 49 | |
| 50 | def testPaginateSearchUsers(self): |
| 51 | users = self.g.search_users("", location="Berlin") |
nothing calls this directly
no test coverage detected