context('knitr')
check_knitr = function () skip_if_not_installed('knitr')
test_that('modules are found when knitr is not loaded', {
check_knitr()
# Ensure knitr isn’t loaded
unloadNamespace('knitr')
expect_paths_equal(module_path(), getwd())
})
test_that('modules are found when knitr is loaded', {
check_knitr()
loadNamespace('knitr')
on.exit(unloadNamespace('knitr'))
expect_paths_equal(module_path(), getwd())
})
test_that('modules are found inside a knitr document', {
check_knitr()
on.exit(unloadNamespace('knitr'))
input = 'support/knitr/doc.rmd'
# Ensure that a different working directory is used.
knitr::opts_knit$set(root.dir = getwd())
output = knitr::knit(input, quiet = TRUE)
on.exit(unlink(output), add = TRUE)
expected = '```\n## knitr/a\n```'
expect_match(paste(readLines(output), collapse = '\n'), expected)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.