tests/testthat/test-muhaz.R

context("muhaz")

skip_on_cran()

skip_if_not_installed("modeltests")
library(modeltests)

skip_if_not_installed("muhaz")
skip_if_not_installed("survival") # does this skip with base R?

library(muhaz)

# load the ovarian data
data(cancer, package = "survival")

fit <- muhaz(ovarian$futime, ovarian$fustat)

test_that("muhaz tidier arguments", {
  check_arguments(tidy.muhaz)
  check_arguments(glance.muhaz)
})

test_that("tidy.muhaz", {
  td <- tidy(fit)
  check_tidy_output(td)
  check_dims(td, expected_cols = 2)
})

test_that("glance.muhaz", {
  gl <- glance(fit)
  check_glance_outputs(gl, strict = FALSE)
  check_dims(gl, expected_cols = 5)
})
tidyverse/broom documentation built on March 24, 2024, 11:09 a.m.