mirror of
https://github.com/agdamsbo/REDCapCAST.git
synced 2024-11-22 05:20:23 +01:00
15 lines
263 B
R
15 lines
263 B
R
# get_data_location <- function(x) {
|
|
# system.file(
|
|
# "testdata",
|
|
# x,
|
|
# package = "REDCapCAST"
|
|
# )
|
|
# }
|
|
|
|
# setwd("tests/testthat")
|
|
|
|
get_data_location <- function(x){
|
|
# here::here(file.path("tests","testthat","data", x))
|
|
file.path("data", x)
|
|
}
|