Nothing
get_result <- function(res, check) res$passed[res$check == check]
test_that("print_return_invisible fails when print method lacks invisible()", {
gp_res <- gp("bad_print", checks = "print_return_invisible")
res <- results(gp_res)
expect_false(get_result(res, "print_return_invisible"))
pos <- failed_positions(gp_res)$print_return_invisible
names <- vapply(pos, `[[`, "", "line")
expect_true("print.myclass" %in% names)
expect_true("print.another" %in% names)
})
test_that("print_return_invisible passes with correct invisible() return", {
gp_res <- gp("good_print", checks = "print_return_invisible")
res <- results(gp_res)
expect_true(get_result(res, "print_return_invisible"))
})
test_that("print_return_invisible passes when no print methods exist", {
gp_res <- gp("good", checks = "print_return_invisible")
res <- results(gp_res)
expect_true(get_result(res, "print_return_invisible"))
})
test_that("print_return_invisible passes when no R directory exists", {
state <- list(path = tempdir())
result <- CHECKS$print_return_invisible$check(state)
expect_true(result$status)
expect_length(result$positions, 0)
})
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.