Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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