tests/testthat/test_query_event_subscriptions.R

context("Query event subscriptions")

testthat::test_that("query_event_subscriptions() works", {
  vcr::use_cassette("query_event_subscriptions", {
    res <- query_event_subscriptions("scope=edi", as = "xml", env = "staging")
  })
  expect_true(all(class(res) %in% c("xml_document", "xml_node")))
  expect_true("subscription" %in% xml2::xml_name(xml2::xml_children(res)))
  children_found <- xml2::xml_name(
    xml2::xml_children(xml2::xml_children(res)[1]))
  children_expected <- c("id", "creator", "packageId", "url")
  expect_true(all(children_found %in% children_expected))
})

Try the EDIutils package in your browser

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

EDIutils documentation built on Oct. 11, 2023, 1:08 a.m.