tests/testthat/test-mod_data.R

testServer(
  mod_data_server,
  # Add here your module params
  args = list(df = fst::read_fst(app_sys("app/extdata/VR21nlboff.fst")))
  , {
    ns <- session$ns
    expect_true(
      inherits(ns, "function")
    )
    expect_true(
      grepl(id, ns(""))
    )
    expect_true(
      grepl("test", ns("test"))
    )
    # Here are some examples of tests you can
    # run on your module
    # - Testing the setting of inputs
    # session$setInputs(x = 1)
    # expect_true(input$x == 1)
    # - If ever your input updates a reactiveValues
    # - Note that this reactiveValues must be passed
    # - to the testServer function via args = list()
    # expect_true(r$x == 1)
    # - Testing output
    # expect_true(inherits(output$tbl$html, "html"))
})

test_that("module ui works", {
  ui <- mod_data_ui(id = "test")
  golem::expect_shinytaglist(ui)
  # Check that formals have not been removed
  fmls <- formals(mod_data_ui)
  for (i in c("id")){
    expect_true(i %in% names(fmls))
  }
})
nelstevens/baseballdashboard documentation built on May 25, 2023, 11:40 p.m.