(t *testing.T, reg *httpmock.Registry)
| 1414 | } |
| 1415 | |
| 1416 | func mockIssueUpdate(t *testing.T, reg *httpmock.Registry) { |
| 1417 | reg.Register( |
| 1418 | httpmock.GraphQL(`mutation IssueUpdate\b`), |
| 1419 | httpmock.GraphQLMutation(` |
| 1420 | { "data": { "updateIssue": { "__typename": "" } } }`, |
| 1421 | func(inputs map[string]interface{}) {}), |
| 1422 | ) |
| 1423 | } |
| 1424 | |
| 1425 | func mockIssueUpdateApiActors(t *testing.T, reg *httpmock.Registry) { |
| 1426 | reg.Register( |
no test coverage detected