😎 Give your xaringan slides some style
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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