test_that("meta_description()", { expect_equal_meta( meta() %>% meta_description("A cool app"), '' ) }) test_that("meta_subject()", { expect_equal_meta( meta() %>% meta_subject("hot topics"), '' ) }) test_that("meta_referrer()", { expect_equal_meta( meta() %>% meta_referrer("no-referrer"), '' ) }) test_that("meta_robots()", { expect_equal_meta( meta() %>% meta_robots("nofollow"), '' ) expect_equal_meta( meta() %>% meta_robots(c("index", "follow")), '' ) }) test_that("meta_theme_color()", { expect_equal_meta( meta() %>% meta_theme_color("#123456"), '' ) }) test_that("meta_general() errors appropriately", { expect_error(meta_general(1)) })