Nothing
test_that("round_up works for positive numbers", {
expect_equal(round_up(1.4), 1.0)
expect_equal(round_up(1.5), 2.0)
expect_equal(round_up(1.6), 2.0)
})
test_that("round_up works for negative numbers", {
expect_equal(round_up(-1.4), -1.0)
expect_equal(round_up(-1.5), -2.0)
expect_equal(round_up(-1.6), -2.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.