test_that("`str_give_ext()` works", {
expect_equal(str_give_ext("abc.csv", "csv"), "abc.csv")
expect_equal(str_give_ext("abc", "csv"), "abc.csv")
expect_equal(str_give_ext("abc.csv", "pdf"), "abc.csv.pdf")
expect_equal(str_give_ext("abc.csv", "pdf", replace = TRUE), "abc.pdf")
expect_equal(str_give_ext(character(), "pdf"), character())
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.