tests/testthat/test-gni_parse.R

context("gni_parse")

test_that("gni_parse returns the correct value", {
  skip_on_cran()
  vcr::use_cassette("gni_parse", {
    tt <- gni_parse("Cyanistes caeruleus")
  })

  expect_match(as.character(tt[,2]), "caeruleus")
	expect_equal(tt[,"position_genus"], 9)
	expect_is(tt, "data.frame")
})

test_that("gni_parse fails well with names that can not be parsed", {
  skip_on_cran()
  vcr::use_cassette("gni_parse_not_parsed", {
    tt <- gni_parse("Nu aakhu")
  })

  expect_false(tt$parsed)
  expect_null(tt$canonical)
})

Try the taxize package in your browser

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

taxize documentation built on April 22, 2022, 9:07 a.m.