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

9 行
391B

  1. context("test-anim_options")
  2. test_that("merging of animation options works", {
  3. ao_new <- anim_options(5, 3, text_size = 9, title_size = 13)
  4. ao_old <- anim_options(ease_default = "cubic-in", text_family = "Times New Roman")
  5. ao_merged <- anim_options(5, 3, "cubic-in", text_size = 9, title_size = 13, text_family = "Times New Roman")
  6. expect_equal(merge(ao_new, ao_old), ao_merged)
  7. })