(reg *httpmock.Registry)
| 14 | ) |
| 15 | |
| 16 | func newTestClient(reg *httpmock.Registry) *Client { |
| 17 | client := &http.Client{} |
| 18 | httpmock.ReplaceTripper(client, reg) |
| 19 | return NewClientFromHTTP(client) |
| 20 | } |
| 21 | |
| 22 | func TestGraphQL(t *testing.T) { |
| 23 | http := &httpmock.Registry{} |
no test coverage detected