😎 Give your xaringan slides some style
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

14 lines
459B

  1. test_that("printing google_font works", {
  2. expect_known_output(
  3. print(google_font("Josefin Sans", "400", "400i", "600i", "700")),
  4. "google-font-print.txt"
  5. )
  6. })
  7. test_that("requires_package()", {
  8. expect_true(requires_package("purrr"))
  9. expect_error(requires_package("notapackage", "myFunction"), "myFunction")
  10. expect_warning(requires_package("notapackage", required = FALSE))
  11. expect_false(requires_package("notapackage", required = FALSE))
  12. })