mockr::with_mock
instead of testthat::with_mock
with_mock
in Vignette and READMEmockr::with_mock
instead of testthat::with_mock
prettydoc::html_pretty
stub$onCall(#)$withArgs(...)
is now stub$onCall(#)$expects(...)
. Previously the stub didn't throw an error if the specified arguments are not present on the nth call. Now it does.stub$onCall(#)$withExactArgs(...)
is now stub$onCall(#)$strictlyExpects(...)
. Similar change in functionality as above. The stub now throws an error if any specified argument is found to be missing or if there is a mismatch in values.stub$expects(...)
in the previous version used to check for the exact set of arguments. In the latest version, it checks if the expected arguments are part of the function call (not exact set).stub$strictlyExpects(...)
will check for the exact set of specified arguments. No specied argument should be missing. And no unspecified argument should be present in the function call.stub$calledTimes()
can be used to get the number of times the stub was called.stub$build()
step anymore. Mock is directly available from stub$f
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.