😎 Give your xaringan slides some style
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

9 行
300B

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