(t *testing.T)
| 24 | ) |
| 25 | |
| 26 | func TestHTTPErrorResponseWithDelete(t *testing.T) { |
| 27 | testHTTPErrorResponse(t, http.MethodDelete, contentType, "", http.StatusMethodNotAllowed) |
| 28 | } |
| 29 | |
| 30 | func TestHTTPErrorResponseWithPut(t *testing.T) { |
| 31 | testHTTPErrorResponse(t, http.MethodPut, contentType, "", http.StatusMethodNotAllowed) |
nothing calls this directly
no test coverage detected