test_that("multiplication works", {
expect_equal(2 * 2, 4)
})
test_that("Adding two integers work", {
expect_equal(add_two(1, 2), 3)
})
test_that("Adding two floats work", {
expect_equal(add_two(1.0, 2.0), 3)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.