context("sp germplasm_details")
con <- ba_db()$sweetpotatobase
test_that("Germplasm_details results are present", {
res <- ba_germplasm_details(con = con, germplasmDbId = "103412")
expect_that(nrow(res) >= 1, is_true())
})
test_that("Out formats work", {
res <- ba_germplasm_details(con = con, germplasmDbId = "103412", rclass = "json")
expect_that("json" %in% class(res), is_true())
res <- ba_germplasm_details(con = con, germplasmDbId = "103412", rclass = "list")
expect_that("list" %in% class(res), is_true())
res <- ba_germplasm_details(con = con, germplasmDbId = "103412", rclass = "data.frame")
expect_that("data.frame" %in% class(res), is_true())
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.