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

9 lines
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. })