8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 214c552 commit cbaeb44Copy full SHA for cbaeb44
tests/integration/test_api.py
@@ -27,3 +27,11 @@ def test_search_code(self):
27
)
28
assert isinstance(next(repos),
29
github3.search.CodeSearchResult)
30
+
31
+ def test_search_users(self):
32
+ """Test the ability to use the user search endpoint"""
33
+ cassette_name = self.cassette_name('search_users', cls='GitHub')
34
+ with self.recorder.use_cassette(cassette_name):
35
+ users = self.gh.search_users('tom followers:>1000')
36
+ assert isinstance(next(users),
37
+ github3.search.UserSearchResult)
0 commit comments