Nothing
test_that("simple key access works", {
expect_equal(
read_by_key(dict_1, "language"),
"Canadian English"
)
})
test_that("compound keys are interpreted properly", {
expect_equal(
read_by_key(dict_1, "nouns.animals.dog"),
"doggie"
)
})
test_that("returns NULL if key not found", {
expect_null(read_by_key(dict_1, "unavailable"))
expect_null(read_by_key(dict_1, "truly.unavailable"))
})
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.