Nothing
test_that("minimal", {
skip_if_offline()
skip_if_not(repoCloned)
repo <- Repository$new(path)
files <- repo$getRFiles()
glueIdx <- sapply(files, function(file) {
file$getName() == "glue.R"
})
file <- files[glueIdx][[1]]
funs <- file$getFunctions()
defFuns <- PaRe::getDefinedFunctions(repo)
glueIdx <- sapply(funs, function(fun) {
fun$getName() == "glue"
})
fun <- funs[glueIdx][[1]]
expect_null(PaRe:::getApplyCall(fun, defFuns))
})
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.