tests/testserver/test_ts_markers_search.R

context("ts markers_search")

con <- ba_db()$testserver

test_that("Calls are present", {

  res <- ba_markers_search(con = con)
  expect_that(nrow(res) == 22, is_true())

})

test_that("Out formats work", {

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

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

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

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