😎 Give your xaringan slides some style
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

9 linhas
292B

  1. context("test-style_xaringan")
  2. test_that("style_xaringan() writes to specified outfile", {
  3. tmpfile <- tempfile(fileext = ".css")
  4. expect_equal(style_xaringan(outfile = tmpfile), tmpfile)
  5. expect_true(file.exists(tmpfile))
  6. expect_true(grepl("xaringanthemer", readLines(tmpfile)[3]))
  7. })