Nothing
context("Page Template Tests")
test_that("titles function works as expected.", {
ttl <- titles(list(), "My title 1", "My title 2",
align = "left", blank_row = "both")
expect_equal(ttl$titles[[1]]$align, "left")
expect_equal(ttl$titles[[1]]$blank_row, "both")
expect_equal(length(ttl$titles[[1]]$titles), 2)
})
test_that("get_titles function works as expected.", {
ttl <- titles(list(), "My title 1", "My title 2",
align = "left", blank_row = "both")
expect_error(get_titles(ttl, 30))
res3 <- get_titles(ttl$titles, 30, 50, "-", 1)
res3
expect_equal(length(res3), 4)
expect_equal(nchar(res3[2]), 30)
ttl <- titles(list(), "My title 1", "My title 2",
align = "left", blank_row = "both", borders = "all")
res3 <- get_titles(ttl$titles, 30, 50, "-", 1)
res3
expect_equal(length(res3), 6)
expect_equal(nchar(res3[2]), 30)
})
test_that("footnotes function works as expected.", {
ftn <- footnotes(list(), "My footnote 1", "My footnote 2",
align = "left", blank_row = "both")
expect_equal(ftn$footnotes[[1]]$align, "left")
expect_equal(ftn$footnotes[[1]]$blank_row, "both")
expect_equal(length(ftn$footnotes[[1]]$footnotes), 2)
})
test_that("get_footnotes function works as expected.", {
ftn <- footnotes(list(), "My footnote 1", "My footnote 2",
align = "left", blank_row = "both")
expect_error(get_footnotes(ftn, 30))
res3 <- get_footnotes(ftn$footnotes, 30, 50, "-", 1)
res3
expect_equal(length(res3), 4)
expect_equal(nchar(res3[2]), 30)
})
test_that("get_footnotes function with borders works as expected.", {
ftn <- footnotes(list(), "My footnote 1", "My footnote 2",
align = "left", blank_row = "both", borders = "all")
expect_error(get_footnotes(ftn, 30))
res3 <- get_footnotes(ftn$footnotes, 30, 50, "-", 1)
res3
expect_equal(length(res3), 6)
expect_equal(nchar(res3[2]), 30)
})
test_that("page_header function works as expected.", {
ph <- page_header(create_report(), left = c("Left 1", "Left 2"),
right = c("Right 1", "Right 2", "Right 3"),
blank_row = "below")
expect_equal(length(ph$page_header_left), 2)
expect_equal(length(ph$page_header_right), 3)
expect_equal(ph$page_header_blank_row, "below")
expect_error(page_header(create_report(), left = c("a", "b", "c", "d", "e", "f")))
expect_error(page_header(create_report(), blank_row = "above"))
})
test_that("page_footer function works as expected.", {
ph <- page_footer(create_report(), left = c("Left 1", "Left 2"),
center = "center",
right = c("Right 1", "Right 2", "Right 3"),
blank_row = "above")
expect_equal(length(ph$page_footer_left), 2)
expect_equal(length(ph$page_footer_center), 1)
expect_equal(length(ph$page_footer_right), 3)
expect_equal(ph$page_footer_blank_row, "above")
expect_error(page_header(create_report(), left = c("a", "b", "c", "d", "e", "f")))
expect_error(page_header(create_report(), blank_row = "above"))
})
test_that("title_header function works as expected.", {
th <- title_header(create_report(), "Title One", "Title Two",
right = c("One", "Two", "Three"),
blank_row = "both")
rws <- get_title_header(th$title_hdr, 50, 60, "-", 1)
expect_equal(length(rws), 5)
expect_equal(rws[1], "")
th <- title_header(create_table(mtcars),
right = c("One", "Two", "Three"))
rws <- get_title_header(th$title_hdr, 50, 60, "-", 1)
expect_equal(length(rws), 3)
expect_equal(trimws(rws[1]), "One")
th <- title_header(create_text("hello"), "Title One", "Title Two",
blank_row = "above")
rws <- get_title_header(th$title_hdr, 50, 60, "-", 1)
expect_equal(length(rws), 3)
expect_equal(trimws(rws[2]), "Title One")
th <- title_header(create_text("hello"), "Title One", "Title Two",
blank_row = "above", borders = "all")
rws <- get_title_header(th$title_hdr, 50, 60, "-", 1)
expect_equal(length(rws), 5)
expect_equal(trimws(rws[3]), "Title One")
})
test_that("page_by function works as expected.", {
pb <- page_by(list(), mpg, "MPG: ",
align = "left",
blank_row = "both")
rws <- get_page_by(pb$page_by, 50, NULL)
expect_equal(length(rws), 3)
expect_equal(rws[1], "")
pb <- page_by(list(), mpg, "MPG: ",
align = "center",
blank_row = "above")
rws <- get_page_by(pb$page_by, 50, "fork")
expect_equal(length(rws), 2)
expect_equal(trimws(rws[2]), "MPG: fork")
pb <- page_by(list(), mpg,
align = "right",
blank_row = "below")
rws <- get_page_by(pb$page_by, 50, NULL)
expect_equal(length(rws), 2)
expect_equal(trimws(rws[1]), "mpg:")
pb <- page_by(list(), mpg, "Label:")
rws <- get_page_by(pb$page_by, 50, "NULL")
expect_equal(length(rws), 2)
expect_equal(trimws(rws[1]), "Label:NULL")
})
test_that("page_by function with count works as expected.", {
pb <- page_by(list(), mpg, "MPG: ",
align = "left",
blank_row = "both")
rws <- get_page_by(pb$page_by, 50, NULL, 2)
expect_equal(length(rws), 4)
expect_equal(rws[1], "")
expect_equal(trimws(rws[2]), "MPG: x")
expect_equal(trimws(rws[3]), "x")
expect_equal(rws[4], "")
})
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.