ThinkR-open / checkhelper

A package to help deal with devtools::check outputs
https://thinkr-open.github.io/checkhelper/
Other
34 stars 4 forks source link

improve testing for `checkhelper::check_clean_userspace` #54

Open ArthurData opened 1 year ago

ArthurData commented 1 year ago

Critères de validation

Comment technique

  if (nrow(all_files) == 5) {
   ...
  } else if (nrow(all_files) == 6) {
    ...
  } else if (nrow(all_files) == 11) {
   ...
  } else {
    stop("Number of rows is not expected: ", all_files)
  }