context("test-scale-type.R")
test_that("no scale for NULL aesthetic", {
expect_equal(find_scale("colour", NULL), NULL)
})
test_that("message + continuous for unknown type", {
x <- structure(1:10, class = "ggplot2_foo")
expect_message(scale <- find_scale("colour", x), "ggplot2_foo")
expect_s3_class(scale, "ScaleContinuous")
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.