expect_all_lte <- function(x, y) {
purrr::walk2(x, y, ~eval(bquote(expect_lte(.x, .y))))
}
expect_all_equal <- function(x, y) {
purrr::walk2(x, y, ~eval(bquote(expect_equal(.x, .y))))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.