noproc_dlfiles {binman} | R Documentation |
Do not post process dlfiles
noproc_dlfiles(dlfiles)
dlfiles |
A data.frame of files by platform and indicating whether they were processed |
Returns a list of character vectors indicating files processed
## Not run:
ymlfile <- system.file("exdata", "sampleapp4.yml", package = "binman")
trdata <- system.file("testdata", "test_dlres.Rdata", package = "binman")
load(trdata)
testthat::with_mock(
`httr::GET` = function(...) {
test_llres
},
`base::dir.create` = function(...) {
TRUE
},
procyml <- process_yaml(ymlfile)
)
procyml
## End(Not run)