tests/testthat/test_measure_distribution_by_category.R

p <- measure_distribution(ggplot2::mpg, hwy)
q <- measure_distribution(ggplot2::mpg, hwy, "hist")
r <- measure_distribution(ggplot2::mpg, hwy, "box")
test_that("Plot layers match expectations",{
  expect_is(p$layers[[1]], "ggproto")
  expect_is(q$layers[[1]], "ggproto")
  expect_is(r$layers[[1]], "ggproto")
})

test_that("Plot returns ggplot object",{
  expect_is(p, "ggplot")
  expect_is(q, "ggplot")
  expect_is(r, "ggplot")
})

test_that("Plot uses correct data",{
  expect_that(length(names(p$data)), equals(11))
  expect_that(length(names(q$data)), equals(11))
  expect_that(length(names(r$data)), equals(11))
})

test_that("x axis label is hwy",{
  expect_match(p$labels$x, "hwy")
  expect_match(q$labels$x, "hwy")
  expect_match(r$labels$x, "")
})

test_that("y axis label is correct",{
  expect_match(p$labels$y, "count")
  expect_match(q$labels$y, "count")
  expect_match(r$labels$y, "hwy")
})

test_that("Plot type is correct", {
  expect_match(class(p$layers[[1]][["geom"]])[[1]], "GeomBar")
  expect_match(class(q$layers[[1]][["geom"]])[[1]], "GeomBar")
  expect_match(class(r$layers[[1]][["geom"]])[[1]], "GeomBoxplot")
})

Try the ezEDA package in your browser

Any scripts or data that you put into this service are public.

ezEDA documentation built on June 29, 2021, 9:05 a.m.