tests/testthat/test-h_format_row.R

testthat::test_that("h_format_row returns the correct dataframe", {
  format <- c(mean = "xx.x", mean_ci = "(xx.xx, xx.xx)")
  labels <- c(mean = "My Mean")

  # test 1
  mean_ci <- c(48, 51)
  x <- list(mean = 50, mean_ci = mean_ci)
  result <- h_format_row(x, format, labels)

  res <- testthat::expect_silent(result)
  testthat::expect_snapshot(res)

  # test 2
  attr(mean_ci, "label") <- "Mean 95% CI"
  x <- list(mean = 50, mean_ci = mean_ci)
  result <- h_format_row(x, format, labels)

  res <- testthat::expect_silent(result)
  testthat::expect_snapshot(res)
})

Try the tern package in your browser

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

tern documentation built on June 22, 2024, 10:25 a.m.