1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
test_that("lazy_semi_join_query() checks arguments", {
by0 <- list(x = "x", y = "x", x_as = ident("LHS"), y_as = ident("RHS"))
lmod <- purrr::list_modify
my_lazy_semi_join_query <- function(x = lazy_frame(x = 1, y = 2)$lazy_query,
y = lazy_frame(x = 1, z = 2)$lazy_query,
anti = FALSE,
by = by0,
na_matches = "never") {
lazy_semi_join_query(
x = x,
y = y,
anti = anti,
by = by,
na_matches = na_matches
)
}
expect_snapshot(error = TRUE, {
(my_lazy_semi_join_query(x = lazy_frame(x = 1)))
(my_lazy_semi_join_query(y = lazy_frame(x = 1)))
})
expect_snapshot(error = TRUE, {
(my_lazy_semi_join_query(by = lmod(by0, x = 1)))
})
expect_snapshot(error = TRUE, {
(my_lazy_semi_join_query(anti = NA))
(my_lazy_semi_join_query(na_matches = "sometimes"))
})
})
|