tests/testthat/test-helper.R

skip_on_cran()
skip_if_not_installed("withr")
withr::with_options(
  list(easystats_erros = TRUE),
  test_that(".safe works with options", {
    expect_error(parameters:::.safe(mean(fd)), regex = "object 'fd' not found")
    expect_identical(parameters:::.safe(mean(fd), 1L), 1L)
    expect_identical(parameters:::.safe(mean(c(1, 2, 3))), 2)
  })
)
test_that(".safe works", {
  expect_null(parameters:::.safe(mean(fd)))
  expect_identical(parameters:::.safe(mean(c(1, 2, 3))), 2)
})

Try the parameters package in your browser

Any scripts or data that you put into this service are public.

parameters documentation built on June 22, 2024, 9:33 a.m.