PATCH is a shorthand for e.Request("PATCH", path, pathargs...).
(path string, pathargs ...interface{})
| 648 | |
| 649 | // PATCH is a shorthand for e.Request("PATCH", path, pathargs...). |
| 650 | func (e *Expect) PATCH(path string, pathargs ...interface{}) *Request { |
| 651 | return e.Request(http.MethodPatch, path, pathargs...) |
| 652 | } |
| 653 | |
| 654 | // DELETE is a shorthand for e.Request("DELETE", path, pathargs...). |
| 655 | func (e *Expect) DELETE(path string, pathargs ...interface{}) *Request { |