MCPcopy Index your code
hub / github.com/PyGithub/PyGithub / testGetIssues

Method testGetIssues

tests/Repository.py:1264–1286  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1262 self.assertEqual(deliveries[0].url, "https://www.example-webhook.com")
1263
1264 def testGetIssues(self):
1265 self.assertListKeyEqual(
1266 self.repo.get_issues(),
1267 lambda i: i.id,
1268 [
1269 4769659,
1270 4639931,
1271 4452000,
1272 4356743,
1273 3716033,
1274 3715946,
1275 3643837,
1276 3628022,
1277 3624595,
1278 3624570,
1279 3624561,
1280 3624556,
1281 3619973,
1282 3527266,
1283 3527245,
1284 3527231,
1285 ],
1286 )
1287
1288 def testGetIssuesWithArguments(self):
1289 milestone = self.repo.get_milestone(3)

Callers

nothing calls this directly

Calls 2

assertListKeyEqualMethod · 0.80
get_issuesMethod · 0.45

Tested by

no test coverage detected