(path: impl AsRef<Path>)
| 365 | } |
| 366 | |
| 367 | fn create_scriptlet_file(path: impl AsRef<Path>) -> TestResult { |
| 368 | let path = path.as_ref(); |
| 369 | let mut output = File::create(path.join(INSTALL_SCRIPTLET_FILE_NAME))?; |
| 370 | write!(output, "{VALID_INSTALL_SCRIPTLET}")?; |
| 371 | Ok(()) |
| 372 | } |
| 373 | |
| 374 | /// Tests the successful collection of data files relative to a directory. |
| 375 | #[rstest] |
no test coverage detected