test_that("safe_unit returns expected output", {
expect_null(safe_unit(1, NULL))
expect_null(safe_unit(NULL, "inches"))
expect_null(safe_unit(NULL, NULL))
valid_unit <- safe_unit(1, "inches")
expect_is(valid_unit, "call")
expect_identical(
eval(valid_unit),
grid::unit(1, "inches")
)
})
test_that("safe_arrow returns expected output", {
expect_null(safe_arrow(30, NULL))
expect_null(safe_arrow(NULL, 0.1))
expect_null(safe_arrow(NULL, NULL))
valid_arrow <- safe_arrow(30, 0.1)
expect_is(valid_arrow, "call")
expect_identical(
eval(valid_arrow),
arrow(
angle = 30, length = unit(0.1, "inches"),
"last", "closed"
)
)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.