(t *testing.T, reg *httpmock.Registry)
| 728 | } |
| 729 | |
| 730 | func mockCommentDelete(t *testing.T, reg *httpmock.Registry) { |
| 731 | reg.Register( |
| 732 | httpmock.GraphQL(`mutation CommentDelete\b`), |
| 733 | httpmock.GraphQLMutation(` |
| 734 | { "data": { "deleteIssueComment": {} } }`, |
| 735 | func(inputs map[string]interface{}) { |
| 736 | assert.Equal(t, "id1", inputs["id"]) |
| 737 | }, |
| 738 | ), |
| 739 | ) |
| 740 | } |
no test coverage detected