Nothing
r <- 0.8
test_that("function returns correct values and class type", {
expect_equal(r %% 1, 0.8)
expect_equal(ceiling(r), 1)
expect_length(r, 1)
expect_type(floor(r), "double")
expect_type(ceiling(r), "double")
expect_true(r < 1)
expect_is(r, "numeric")
})
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.