tests/testserver/test_ts_germplasm_markerprofiles.R

context("ts germplasm_markerprofiles")

con <- ba_db()$testserver

test_that(" are present", {

  res <- ba_germplasm_markerprofiles(con = con, germplasmDbId = "1")
  expect_that(nrow(res) >= 2, is_true())

})

test_that(" out formats work", {

  res <- ba_germplasm_markerprofiles(con = con, germplasmDbId = "1", rclass = "json")
  expect_that("json" %in% class(res), is_true())

  res <- ba_germplasm_markerprofiles(con = con, germplasmDbId = "1", rclass = "list")
  expect_that("list" %in% class(res), is_true())

  res <- ba_germplasm_markerprofiles(con = con, germplasmDbId = "1", rclass = "data.frame")
  expect_that("data.frame" %in% class(res), is_true())

})
c5sire/brapi documentation built on Oct. 17, 2019, 11:45 a.m.