Nothing
context("Checking capitalizer")
test_that("capitalizer gives the desired output",{
expected <- list(c("I", "Like", "it", "but", "I'm", "not", "certain"), c("i",
"Like", "it", "but", "i'm", "not", "certain"))
expect_equivalent(capitalizer(bag_o_words("i like it but i'm not certain"),
"like"), expected[[1]])
expect_equivalent(a2 <- capitalizer(bag_o_words("i like it but i'm not certain"),
"like", FALSE), expected[[2]])
})
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.