Nothing
testthat::context("TokenKeyword class")
testthat::test_that("Conversion to string works fine", {
testthat::expect_equal(TokenKeyword$new("")$toString(), "")
testthat::expect_equal(TokenKeyword$new("a")$toString(), "A")
testthat::expect_equal(TokenKeyword$new("A")$toString(), "A")
options(sqlq_uppercase = FALSE)
testthat::expect_equal(TokenKeyword$new("a")$toString(), "a")
testthat::expect_equal(TokenKeyword$new("A")$toString(), "a")
options(sqlq_uppercase = TRUE)
testthat::expect_equal(TokenKeyword$new("a")$toString(), "A")
testthat::expect_equal(TokenKeyword$new("A")$toString(), "A")
})
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.