| request_registry {webmockr} | R Documentation |
List or clear requests in the request registry
Description
List or clear requests in the request registry
Usage
request_registry()
request_registry_clear()
Details
request_registry() lists the requests that have been made
that webmockr knows about; request_registry_clear() resets the
request registry (removes all recorded requests)
Value
an object of class RequestRegistry, print method gives the
requests in the registry and the number of times each one has been
performed
See Also
Other request-registry:
HashCounter,
RequestRegistry
Examples
webmockr::enable()
stub_request("get", "https://httpbin.org/get") %>%
to_return(body = "success!", status = 200)
# nothing in the request registry
request_registry()
# make the request
z <- crul::HttpClient$new(url = "https://httpbin.org")$get("get")
# check the request registry - the request was made 1 time
request_registry()
# do the request again
z <- crul::HttpClient$new(url = "https://httpbin.org")$get("get")
# check the request registry - now it's been made 2 times, yay!
request_registry()
# clear the request registry
request_registry_clear()
webmockr::disable()
[Package webmockr version 1.0.0 Index]