Nothing
test_that("getBaseFont works", {
wb <- createWorkbook()
expect_equal(
getBaseFont(wb),
list(
size = list(val = "11"),
# should this be "#000000"?
colour = list(rgb = "FF000000"),
name = list(val = "Calibri")
)
)
modifyBaseFont(wb, fontSize = 9, fontName = "Arial", fontColour = "red")
expect_equal(
getBaseFont(wb),
list(
size = list(val = "9"),
colour = list(rgb = "FFFF0000"),
name = list(val = "Arial")
)
)
})
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.