File: test-utils.R

package info (click to toggle)
r-cran-tidyverse 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 688 kB
  • sloc: sh: 11; makefile: 2
file content (5 lines) | stat: -rw-r--r-- 175 bytes parent folder | download
1
2
3
4
5
test_that("tidyverse packages returns character vector of package names", {
  out <- tidyverse_packages()
  expect_type(out, "character")
  expect_true("ggplot2" %in% out)
})