mirror of
https://github.com/agdamsbo/stRoke.git
synced 2024-11-22 04:50:23 +01:00
15 lines
548 B
R
15 lines
548 B
R
|
test_that("quatile_cut() works for detail.list==FALSE", {
|
||
|
result <- quantile_cut(iris$Sepal.Length,3,detail.list=FALSE)
|
||
|
expect_equal(length(levels(result)), 3)
|
||
|
expect_s3_class(result, "factor")
|
||
|
})
|
||
|
|
||
|
################################################################################
|
||
|
|
||
|
test_that("quatile_cut() works for detail.list==FALSE", {
|
||
|
result <- quantile_cut(iris$Sepal.Length,3,detail.list=TRUE)
|
||
|
expect_length(result, 2)
|
||
|
expect_type(result, "list")
|
||
|
})
|
||
|
|
||
|
################################################################################
|