Nothing
test_that(".do_square_list: works", {
res <- .do_square_list(square.size=100,
coords.min = 0, coords.max = 1000,
square.list = factor(1:10), axes = "X")
expect_equal(res$squares.print, as.character(1:10))
})
test_that(".do_square_list: does not work 1", {
res <- .do_square_list(square.size=100,
coords.min = 0, coords.max = 1000,
square.list = factor(1:9), axes = "X")
expect_null(res$squares.print)
expect_equal(res$squares.save, as.character(1:9))
})
test_that(".do_square_list: does not work 2", {
res <- .do_square_list(square.size= 10,
coords.min = 0, coords.max = 1000,
square.list = factor(1:10), axes = "X")
expect_null(res$squares.print)
expect_equal(res$squares.save, as.character(1:10))
})
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.