Nothing
test_that("fp_text - print", {
fp <- fp_text(font.size = 10)
expect_output(print(fp))
})
test_that("fp_text - update", {
fp <- fp_text(font.size = 10)
fp <- update(fp, font.size = 20)
expect_equal(fp$font.size, 20)
fp <- update(fp, color = "red")
expect_equal(fp$color, "red")
fp <- update(fp, font.family = "Time New Roman")
expect_equal(fp$font.family, "Time New Roman")
fp <- update(fp, vertical.align = "superscript")
expect_equal(fp$vertical.align, "superscript")
fp <- update(fp, shading.color = "yellow")
expect_equal(fp$shading.color, "yellow")
})
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.