cjstehno / ersatz

🤖 A simulated HTTP server for testing client code with configurable responses.
https://cjstehno.github.io/ersatz
Apache License 2.0
47 stars 5 forks source link

Support Options and Trace methods #50

Closed cjstehno closed 7 years ago

cjstehno commented 7 years ago

Need to add support for OPTIONS and TRACE request matching.

cjstehno commented 7 years ago

Add some helpful docs about the supported methods and their content:

Method Request Body Response Body
GET N Y
HEAD N N
POST Y Y
PUT Y N
PATCH Y N
DELETE N N
OPTIONS N N
TRACE ? ?
cjstehno commented 7 years ago

This has been implemented in the development branch and will be in the upcoming 1.3 release.