😎 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 satır
407B

  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(expect_false(requires_package("notapackage", required = FALSE)))
  11. })