tests/testthat/test-mod_editMeal.R

testServer(
  mod_editMeal_server,
  # Add here your module params
  args = list(data)
  , {
    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_editMeal_ui(id = "test")
  #golem::expect_shinytaglist(ui)
  # Check that formals have not been removed
  fmls <- formals(mod_editMeal_ui)
  for (i in c("id")){
    expect_true(i %in% names(fmls))
  }
})
peernisse/riverMenu documentation built on Aug. 31, 2022, 7:39 p.m.