Nothing
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.")
}
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.