Nothing
testthat::test_that("char string of nchar 36 returns TRUE", {
testthat::expect_true(
valid_id(paste0(rep("a", 36), collapse = ""))
)
})
testthat::test_that("char string of nchar < 36 returns FALSE", {
testthat::expect_false(
valid_id(paste0(rep("a", 35), collapse = ""))
)
})
testthat::test_that("char string of nchar > 36 returns FALSE", {
testthat::expect_false(
valid_id(paste0(rep("a", 37), collapse = ""))
)
})
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.