Add a directory path to be scanned later. If `dir` turns out to be a regular file, it is silently ignored. Otherwise, any problems reading the directory are reported.
(&mut self, dir: P)
| 101 | /// If `dir` turns out to be a regular file, it is silently ignored. |
| 102 | /// Otherwise, any problems reading the directory are reported. |
| 103 | pub fn push_dir<P: Into<PathBuf>>(&mut self, dir: P) { |
| 104 | self.dir_stack.push(dir.into()); |
| 105 | } |
| 106 | |
| 107 | /// Add a test to be executed later. |
| 108 | /// |
no test coverage detected