Nothing
# Testing RequestOptions
test_that("RequestOptions returns correct structure", {
result <- RequestOptions(result_start_index = 0, num_results = 10, sort_by = "score", desc = TRUE)
expect_true("paginate" %in% names(result))
expect_true("sort" %in% names(result))
expect_equal(result$paginate$start, 0)
expect_equal(result$paginate$rows, 10)
expect_equal(result$sort[[1]]$sort_by, "score")
expect_equal(result$sort[[1]]$direction, "desc")
})
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.