😎 Give your xaringan slides some style
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

16 lines
483B

  1. test_that("style_xaringan() writes to specified outfile", {
  2. tmpfile <- tempfile(fileext = ".css")
  3. expect_equal(style_xaringan(outfile = tmpfile), tmpfile)
  4. expect_true(file.exists(tmpfile))
  5. expect_true(grepl("xaringanthemer", readLines(tmpfile)[3]))
  6. })
  7. test_that("style_xaringan() warns if base_font_size is not absolute", {
  8. tmpfile <- tempfile(fileext = ".css")
  9. expect_warning(
  10. style_xaringan(outfile = tmpfile, base_font_size = "1em"),
  11. "absolute units"
  12. )
  13. })