context("Calculating the cube of non-numerics")
test_that("At least numeric values work.", {
num_vec <- c(0, -4.6, 3.4)
expect_identical(cube(num_vec), num_vec^3)
})
test_that("Logicals automatically convert to numeric.", {
logic_vec <- c(TRUE, TRUE, FALSE)
expect_identical(cube(logic_vec), logic_vec^3)
})
test_that("At least numeric values work.", {
chr_vec <- c("how", "are", "you")
expect_error(cube(chr_vec))
chr_vec2 <- c("-1", "0", "5")
expect_error(cube(chr_vec2))
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.