Nothing
# Unit tests for the place_order function
# Test 1: Invalid class type for tokens throws error
test_that("invalid class type for tokens throws error", {
expect_error(place_order(1,
account_number = "test",
request_body = list()), # nolint
"Tokens must be a list, account number must be a string, and the request body must be JSON.") # nolint
})
# Test 2: Invalid class type for account number throws error
test_that("invalid class type for account number throws error", {
expect_error(place_order(1,
account_number = 1,
request_body = list()), # nolint
"Tokens must be a list, account number must be a string, and the request body must be JSON.") # nolint
})
# Test 3: Invalid class type for request body throws error
test_that("invalid class type for request body throws error", {
expect_error(place_order(1,
account_number = "test",
request_body = "error"), # nolint
"Tokens must be a list, account number must be a string, and the request body must be JSON.") # nolint
})
# Test 4: Bad API call throws error
test_that("bad API call throws error", {
json_object <- list()
class(json_object) <- "json"
expect_error(place_order(list(),
account_number = "test",
request_body = json_object), # nolint
"Error during API call - please check inputs and ensure access token is refreshed.") # nolint
})
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.