Skip to content
Permalink
develop
Go to file
 
 
Cannot retrieve contributors at this time
9 lines (8 sloc) 267 Bytes
context("multistats")
test_that("output from multistats is as expected", {
actual <- ds_tidy_stats(mtcars, mpg, disp, hp) %>%
dplyr::filter(vars == "disp") %>%
dplyr::select(min)
expected <- tibble::tibble(min = 71.1)
expect_equal(actual, expected)
})
You can’t perform that action at this time.