context('relative imports')
test_that('Imports are absolute by default', {
old_opts = options(box.path = getwd())
on.exit(options(old_opts))
box::use(mod/nested/relative_a)
expect_equal(relative_a$a_which(), '/a')
})
test_that('Relative import are always local', {
old_opts = options(box.path = getwd())
on.exit(options(old_opts))
box::use(mod/nested/relative_a)
expect_equal(relative_a$local_a_which(), 'nested/a')
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.