Fixtures
What are fixtures?
Stoobly fixtures are predefined responses used during mocking. Fixtures are used in the case where a recorded response is not found for the current request.
Why use fixtures?
Quick way to mock a request in the case where a specific response is difficult to record
Serve assets that otherwise should not be recorded
Example Fixtures YAML File
The following is an example file for a fixtures-response.yml
passed to the --fixtures-response-path
option:
Public Directory
A specified public directory can serve as a folder where files in the folder with relative paths that match a request's path are served. For example, given the request path:
/users/1
with header Content-Type: application/json
, and given
<PUBLIC-DIRECTORY-PATH>
is the path the public directory then:
File
<PUBLIC-DIRECTORY-PATH>/users/1.json
will be searched firstIf not found, then
<PUBLIC-DIRECTORY-PATH/users/1
will be searched
Defaults
Unless otherwise specified:
status_code
defaults to 200Response header
Content-Type
will be inferred from the fixture file extension
Next Steps
Last updated
Was this helpful?