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 97f4dc8 commit dd30e92Copy full SHA for dd30e92
1 file changed
tests/integration/test_api.py
@@ -19,6 +19,15 @@ def test_search_code(self):
19
assert isinstance(next(repos),
20
github3.search.CodeSearchResult)
21
22
+ def test_search_issues(self):
23
+ """Test the ability to use the issues search endpoint"""
24
+ cassette_name = self.cassette_name('search_issues',
25
+ cls='GitHub')
26
+ with self.recorder.use_cassette(cassette_name):
27
+ repos = self.gh.search_issues('github3 labels:bugs')
28
+ assert isinstance(next(repos),
29
+ github3.search.IssueSearchResult)
30
+
31
def test_search_repositories(self):
32
"""Test the ability to use the repository search endpoint"""
33
cassette_name = self.cassette_name('search_repositories',
0 commit comments