library(xml2)
test_that("structure is intact", {
raw <- input_slider("label")
expect_true(is.character(raw) && !any(raw == ""))
html <- read_html(paste(raw, collapse = ""))
children <- xml_child(html)
expect_true(xml_length(children) == 1)
children <- xml_child(children)
expect_true(xml_length(children) == 3)
children <- xml_child(children, 2)
expect_true(xml_length(children) == 0)
})
test_that("build environment is added to", {
content <- input_slider("label")
parts <- make_build_environment()
eval(expression(
input_slider("label")
), parts)
expect_identical(parts$content, content)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.