tests/testthat/test-creature_list.R

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

# # Error testing
# test_that("Errors work as desired", {
#   # No errors in this function
# })

# Warning testing
test_that("Warnings work as desired", {
  expect_warning(dndR::creature_list(name = "fake creature that doesn't exist"))
  expect_warning(dndR::creature_list(name = "goblin", ver = "2024"))
})

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

# Output testing
test_that("Outputs are as expected", {
  creature_set <- dndR::creature_list(name = "shark")
  expect_equal(class(creature_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.