stub_registry {webmockr} | R Documentation |
List stubs in the stub registry
Description
List stubs in the stub registry
Usage
stub_registry()
Value
an object of class StubRegistry
, print method gives the
stubs in the registry
See Also
Other stub-registry:
StubRegistry
,
remove_request_stub()
,
stub_registry_clear()
Examples
# make a stub
stub_request("get", "https://httpbin.org/get") %>%
to_return(body = "success!", status = 200)
# check the stub registry, there should be one in there
stub_registry()
# make another stub
stub_request("get", "https://httpbin.org/get") %>%
to_return(body = "woopsy", status = 404)
# check the stub registry, now there are two there
stub_registry()
# to clear the stub registry
stub_registry_clear()
[Package webmockr version 1.0.0 Index]