1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
## ----include = FALSE----------------------------------------------------------
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
set.seed(1014)
## ----setup--------------------------------------------------------------------
library(testthat)
## ----include = FALSE----------------------------------------------------------
snapper <- local_snapshotter()
snapper$start_file("snapshotting.Rmd", "test")
## -----------------------------------------------------------------------------
bullets <- function(text, id = NULL) {
paste0(
"<ul", if (!is.null(id)) paste0(" id=\"", id, "\""), ">\n",
paste0(" <li>", text, "</li>\n", collapse = ""),
"</ul>\n"
)
}
cat(bullets("a", id = "x"))
## -----------------------------------------------------------------------------
test_that("bullets", {
expect_equal(bullets("a"), "<ul>\n <li>a</li>\n</ul>\n")
expect_equal(bullets("a", id = "x"), "<ul id=\"x\">\n <li>a</li>\n</ul>\n")
})
## -----------------------------------------------------------------------------
test_that("bullets", {
expect_snapshot(cat(bullets("a")))
expect_snapshot(cat(bullets("a", "b")))
})
## ----include = FALSE----------------------------------------------------------
# Reset snapshot test
snapper$end_file()
snapper$start_file("snapshotting.Rmd", "test")
## -----------------------------------------------------------------------------
test_that("bullets", {
expect_snapshot(cat(bullets("a")))
expect_snapshot(cat(bullets("a", "b")))
})
## ----include = FALSE----------------------------------------------------------
# Reset snapshot test
snapper$end_file()
snapper$start_file("snapshotting.Rmd", "test")
## ----error = TRUE-------------------------------------------------------------
try({
bullets <- function(text, id = NULL) {
paste0(
"<ul", if (!is.null(id)) paste0(" id=\"", id, "\""), ">\n",
paste0("<li>", text, "</li>\n", collapse = ""),
"</ul>\n"
)
}
test_that("bullets", {
expect_snapshot(cat(bullets("a")))
expect_snapshot(cat(bullets("a", "b")))
})
})
## -----------------------------------------------------------------------------
f <- function() {
print("Hello")
message("Hi!")
warning("How are you?")
}
## -----------------------------------------------------------------------------
test_that("f() makes lots of noise", {
expect_snapshot(f())
})
## ----error = TRUE-------------------------------------------------------------
try({
test_that("you can't add a number and a letter", {
expect_snapshot(1 + "a")
})
})
## -----------------------------------------------------------------------------
test_that("you can't add a number and a letter", {
expect_snapshot(1 + "a", error = TRUE)
})
## -----------------------------------------------------------------------------
test_that("you can't add weird things", {
expect_snapshot(error = TRUE, {
1 + "a"
mtcars + iris
mean + sum
})
})
## -----------------------------------------------------------------------------
test_that("can snapshot a simple list", {
x <- list(a = list(1, 5, 10), b = list("elephant", "banana"))
expect_snapshot_value(x)
})
## -----------------------------------------------------------------------------
knitr::include_graphics("review-image.png")
## -----------------------------------------------------------------------------
knitr::include_graphics("review-text.png")
|