tests/testthat/test-species_w.R

test_that("species_w works", {

  species <- "Anemone canadensis"
  species2 <- "Andromeda glaucophylla"

  expect_error(species_w(species),
               "Either database_id or database_inventory must be specified.")
  expect_error(species_w(species, database_inventory = faithful),
               "database_inventory must be a species inventory in the format provided by database_inventory().")
  expect_error(species_w(species, database_id = "hi"),
               "database_id must be an integer.")

  db <- suppressMessages(download_database(1))
  db_inv <- suppressMessages(database_inventory(db))

  expect_error(species_w(species, 149, db_inv),
               "database_id or database_inventory cannot both be specified.")
  expect_true(is.na(suppressMessages(species_w("fake_species",
                                               database_inventory = db_inv))))

  if (nrow(db_inv) != 0) {
    expect_equal(species_w(species2, database_inventory = db_inv), -5)
    expect_message(species_w("fake_species", database_inventory = db_inv),
                   "Species not found in specified database.")
  }
})

Try the fqar package in your browser

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

fqar documentation built on June 22, 2025, 1:06 a.m.