Nothing
test_that("comparing hashes works", {
source_file <- tempfile()
fs::file_copy(test_path("examples/examples-man/between.Rd"), source_file)
hashes <- digest::digest(.readlines(source_file))
names(hashes) <- source_file
expect_true(.is_frozen(source_file, source_file, hashes))
other_source_file <- test_path("examples/examples-man/between.md")
expect_false(.is_frozen(other_source_file, other_source_file, hashes))
# modified file doesn't have the same hash
mod <- c(.readlines(source_file), "abc")
cat(mod, file = source_file)
expect_false(.is_frozen(source_file, source_file, hashes))
})
test_that(".is_frozen is FALSE if files don't exist", {
source_file <- tempfile()
fs::file_copy(test_path("examples/examples-man/between.Rd"), source_file)
hashes <- digest::digest(.readlines(source_file))
names(hashes) <- source_file
expect_false(.is_frozen("foobar", "foobar", hashes))
})
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.