# invalid inputs
# assignment ID
test_that("If invalid `id` parameter, then issues error", {
expect_error(archive_assignment(id = "boo"))
})
# workspace
# invalid workspace name
test_that("Error if invalid workspace name", {
expect_error(
archive_assignment(
id = 1,
workspace = "invalid workspace name"
)
)
})
# unauthorized or non-existant workspace
test_that("Error if unauthorized or non-existant workspace", {
expect_error(
archive_assignment(
id = 1,
workspace = "fake"
)
)
})
# valid outputs
test_that("Issues message", {
vcr::use_cassette("archive_assignment_msg", {
expect_message(archive_assignment(id = 1))
})
})
test_that("Returns logical value if `verbose = TRUE`", {
vcr::use_cassette("archive_assignment_returns", {
x <- suppressMessages(archive_assignment(id = 1, verbose = TRUE))
})
expect_type(x, "logical")
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.