(t *testing.T, reg *httpmock.Registry)
| 710 | } |
| 711 | |
| 712 | func mockCommentDelete(t *testing.T, reg *httpmock.Registry) { |
| 713 | reg.Register( |
| 714 | httpmock.GraphQL(`mutation CommentDelete\b`), |
| 715 | httpmock.GraphQLMutation(` |
| 716 | { "data": { "deleteIssueComment": {} } }`, |
| 717 | func(inputs map[string]interface{}) { |
| 718 | assert.Equal(t, "id1", inputs["id"]) |
| 719 | }, |
| 720 | ), |
| 721 | ) |
| 722 | } |
no test coverage detected