Nothing
test_that("repeat_test passes with a true expectation", {
expect_silent(
repeat_test(property = function() expect_true(TRUE))
)
})
test_that("repeat_test fails with a false expectation", {
expect_error(
repeat_test(property = function() expect_true(FALSE))
)
})
test_that("repeat_test fails with no expectation", {
expect_error(
repeat_test(property = function() a == 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.