Skip to content

Commit de2b31b

Browse files
committed
Deploying to gh-pages from @ 34d9ab9 🚀
1 parent 2dc29a0 commit de2b31b

132 files changed

Lines changed: 149 additions & 142 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

dev/CODE_OF_CONDUCT.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/LICENSE-text.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/LICENSE.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/articles/challenging-tests.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/articles/custom-expectation.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/articles/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/articles/mocking.html

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/articles/mocking.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ test_that("check_installed() checks minimum version", {
104104
#> check_installed("testthat", "99.99.999")
105105
#> Condition
106106
#> Error in `check_installed()`:
107-
#> ! {testthat} version 3.3.1.9000 is installed, but 99.99.999 is required.
107+
#> ! {testthat} version 3.3.2.9000 is installed, but 99.99.999 is required.
108108
#> Test passed with 2 successes 🎊.
109109
```
110110

@@ -292,7 +292,7 @@ function to mock.
292292
``` r
293293
unix_time <- function() unclass(Sys.time())
294294
unix_time()
295-
#> [1] 1767915665
295+
#> [1] 1768230224
296296
```
297297

298298
Now I’m going to create a function factory that makes it easy to compute
@@ -309,7 +309,7 @@ elapsed <- function() {
309309
timer <- elapsed()
310310
Sys.sleep(0.5)
311311
timer()
312-
#> [1] 0.5019338
312+
#> [1] 0.5019276
313313
```
314314

315315
Imagine trying to test this function without mocking! You’d probably

dev/articles/parallel.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/articles/skipping.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)