😎 Give your xaringan slides some style
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
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. })