😎 Give your xaringan slides some style
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
370B

  1. test_that("element_description", {
  2. text_in <- c("multiple", NA, "", ".remark-slide-content", "h1", "pre, code")
  3. text_out <- c(
  4. "Used in multiple CSS rules.",
  5. "",
  6. "",
  7. "Modifies the `.remark-slide-content` class.",
  8. "Modifies the `h1` element.",
  9. "Modifies the `pre, code` elements."
  10. )
  11. expect_equal(element_description(text_in), text_out)
  12. })