(_ *testing.T, reg *httpmock.Registry)
| 1321 | } |
| 1322 | |
| 1323 | func mockIssueProjectItemsGet(_ *testing.T, reg *httpmock.Registry) { |
| 1324 | reg.Register( |
| 1325 | httpmock.GraphQL(`query IssueProjectItems\b`), |
| 1326 | httpmock.StringResponse(` |
| 1327 | { "data": { "repository": { "issue": { |
| 1328 | "projectItems": { |
| 1329 | "nodes": [ |
| 1330 | { "id": "ITEMID", "project": { "title": "RoadmapV2" } } |
| 1331 | ] |
| 1332 | } |
| 1333 | } } } }`), |
| 1334 | ) |
| 1335 | } |
| 1336 | |
| 1337 | func mockRepoMetadata(_ *testing.T, reg *httpmock.Registry) { |
| 1338 | reg.Register( |
no test coverage detected