Skip to content

Commit 2dc29a0

Browse files
committed
Deploying to gh-pages from @ ace29c5 🚀
1 parent b909155 commit 2dc29a0

133 files changed

Lines changed: 162 additions & 152 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.

404.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.

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.

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.

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.

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.

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.

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.

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.

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 is installed, but 99.99.999 is required.
107+
#> ! {testthat} version 3.3.2 is installed, but 99.99.999 is required.
108108
#> Test passed with 2 successes 🎊.
109109
```
110110

@@ -291,7 +291,7 @@ function to mock.
291291
``` r
292292
unix_time <- function() unclass(Sys.time())
293293
unix_time()
294-
#> [1] 1767880243
294+
#> [1] 1768230020
295295
```
296296

297297
Now I’m going to create a function factory that makes it easy to compute
@@ -308,7 +308,7 @@ elapsed <- function() {
308308
timer <- elapsed()
309309
Sys.sleep(0.5)
310310
timer()
311-
#> [1] 0.5017369
311+
#> [1] 0.5019202
312312
```
313313

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

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.

0 commit comments

Comments
 (0)