Nothing
      context("highbrow")
skip_on_cran()
skip_if_offline()
test_that("highbrow", {
  vcr::use_cassette("highbrow", {
    out <- highplos(q = 'alcohol', hl.fl = 'abstract', rows = 10)
    aa <- highbrow(out, browse = FALSE)
    expect_is(out, "list")
    expect_is(aa, "character")
    expect_match(aa, ".html")
  }, preserve_exact_body_bytes = TRUE)
  # output parameter works
  ff <- tempfile(pattern = "fart", fileext = ".html")
  bb <- highbrow(out, output = ff, browse = FALSE)
  expect_is(bb, "character")
  expect_match(bb, "fart")
  # fails well
  expect_error(highbrow(), "Please supply some input")
  expect_error(highbrow("adf"), "Please supply a list object")
  alist <- list(a = 6, b = 5)
  expect_error(highbrow(alist), "These are probably not DOIs")
})
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.