Nothing
test_that("User defined token", {
testtok <- "123abc"
hgd(token = testtok, silent = TRUE)
hs <- hgd_details()
dev.off()
expect_equal(hs$token, testtok)
})
test_that("Token R seed independence", {
set.seed(1234)
a <- hgd_generate_token(8)
set.seed(1234)
b <- hgd_generate_token(8)
expect_false(isTRUE(all.equal(a, b)))
})
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.