You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 satır
197B

  1. collapse_html_chr <- function(x) {
  2. x <- paste(x, collapse = "\n")
  3. gsub("\\s*\n\\s*", "", x)
  4. }
  5. expect_html_chr <- function(x, y) {
  6. expect_equal(collapse_html_chr(x), collapse_html_chr(y))
  7. }