Nothing
# canadianmaps testing #
#context("check-functions") # The file is called "test-functions.R"
library(testthat) # load testthat package
library(canadianmaps) # load my package
#scale_fill_map
test_that("check-functions: scale_fill_map() returns a ggplot manual fill object", {
output <- scale_fill_map(palette = "Kelly", num = 5)
expect_silent(output$scale_name)
})
#scale_color_map
test_that("check-functions: scale_color_map() returns a ggplot manual fill object", {
output <- scale_color_map(palette = "Kelly", num = 5)
expect_silent(output$scale_name)
})
#coord_transform
test_that("check-functions: coord_transform() returns a dataframe", {
lat <- c(2,3,4)
long <- c(5,6,7)
data <- data.frame(lat, long)
output <- data %>%
coord_transform(long = "long", lat = "lat")
expect_s3_class(output, "data.frame")
})
#FSA
test_that("check-functions: FSA returns a dataframe", {
output <- FSA
expect_s3_class(output, "data.frame")
})
#PROV
test_that("check-functions: PROV returns a dataframe", {
output <- PROV
expect_s3_class(output, "data.frame")
})
#REG
test_that("check-functions: REG returns a dataframe", {
output <- REG
expect_s3_class(output, "data.frame")
})
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.