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

12 lines
367B

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