tests/testthat/test-spell_list.R

# Run all tests in this script:
## testthat::test_file(file.path("tests", "testthat", "test-spell_list.R"))

# Error testing
test_that("Errors work as desired", {
  ## ritual is neither NULL nor logical
  expect_error(dndR::spell_list(ritual = "false"))
})

# Warning testing
test_that("Warnings work as desired", {
  expect_warning(dndR::spell_list(name = "fake spell that doesn't exist"))
  expect_warning(dndR::spell_list(name = "chill touch", ver = "2024"))
})

# # Message testing
# test_that("Messages work as desired", {
#   # No messages in this function
# })

# Output testing
test_that("Outputs are as expected", {
  spell_set <- dndR::spell_list(name = "chill touch")
  expect_equal(class(spell_set), "data.frame")
})

Try the dndR package in your browser

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

dndR documentation built on June 11, 2025, 5:09 p.m.