Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for dev testthat #229

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions tests/testthat/helper-test_that_for_all.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@
# function that makes the testing of the same expectation for multiple expressions easier
test_that_for_all <- function(X, desc, code, envir = parent.frame()){
stopifnot(is.character(X))

# capture name of the first argument
name_x <- as.character(substitute(X)) %>% stringr::str_replace("s$", "")
# capture testing code

# capture testing code
code <- substitute(code)
# for each element in x replace ".name_xs" with element and call testinf function

# for each element in x replace ".name_xs" with element and call testinf function
purrr::map(X, function(x){
code_x <- substitute_q(code, list(.fun = as.symbol(x)) %>% purrr::set_names(paste0(".", name_x)))

# copy source code refernce to new expression
attr(code_x, "srcref") <- attr(code, "srcref")

# call test_code function avoiding ::: operator
do.call(get("test_code", envir = asNamespace("testthat")), list(test = paste(desc, "for", name_x, x), code = code_x, env = envir), envir = envir)
do.call(get("test_code", envir = asNamespace("testthat")), list(test = paste(desc, "for", name_x, x), code = code_x, env = envir, reporter = testthat::get_reporter()), envir = envir)
})
}


# adapted from the pryr package
substitute_q <- function (x, env)
substitute_q <- function (x, env)
{
stopifnot(is.language(x))
call <- substitute(substitute(x, env), list(x = x))
Expand Down
Loading