tests/testthat/helper-traduire.R

rand_str <- function(n = 10) {
  paste(sample(letters, n, replace = TRUE), collapse = "")
}


with_options <- function(new, expr) {
  old <- options(new)
  on.exit(options(old))
  force(expr)
}

expect_no_error <- function(object) {
  expect_error(object, NA)
}
reside-ic/traduire documentation built on March 25, 2023, 8:21 a.m.