1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
test_that("card_image()", {
show_raw_html <- function(x) {
cat(format(x))
}
expect_snapshot(
show_raw_html(
card(
card_image("https://example.com/image.jpg"),
card_body("image cap on top of card")
)
)
)
expect_snapshot(
show_raw_html(
card(
card_body("image cap on bottom of card"),
card_image("https://example.com/image.jpg")
)
)
)
expect_snapshot(
show_raw_html(
card(
card_header("header"),
card_image("https://example.com/image.jpg"),
card_body("image not a cap")
)
)
)
expect_snapshot(
show_raw_html(
card(
card_image("https://example.com/image.jpg", alt = "card-img")
)
)
)
})
test_that("card_image() input validation", {
expect_snapshot(
error = TRUE,
card_image("cat.jpg")
)
expect_snapshot(
error = TRUE,
card_image("foo", "bar")
)
expect_snapshot(
error = TRUE,
card_image("foo", border_radius = "guess")
)
})
|