Nothing
test_that("sanity_check works", {
run_quietly_in_a_dummy_golem({
write(
"browser()",
file.path(
".",
"R/app.R"
),
append = TRUE
)
write(
"#TODO",
file.path(
".",
"R/app.R"
),
append = TRUE
)
write(
"#TOFIX",
file.path(
".",
"R/app.R"
),
append = TRUE
)
write(
"#BUG",
file.path(
".",
"R/app.R"
),
append = TRUE
)
write(
"# TODO",
file.path(
".",
"R/app.R"
),
append = TRUE
)
write(
"# TOFIX",
file.path(
".",
"R/app.R"
),
append = TRUE
)
write(
"# BUG",
file.path(
".",
"R/app.R"
),
append = TRUE
)
res <- sanity_check(
"."
)
expect_true(
nrow(res) == 7
)
})
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.