()
| 1297 | |
| 1298 | #[test] |
| 1299 | fn test_baseimage_root() -> Result<()> { |
| 1300 | let td = fixture()?; |
| 1301 | let config = &LintExecutionConfig::default(); |
| 1302 | |
| 1303 | // An empty root should fail our test |
| 1304 | assert!(check_baseimage_root(&td, config).unwrap().is_err()); |
| 1305 | |
| 1306 | drop(td); |
| 1307 | let td = passing_fixture()?; |
| 1308 | check_baseimage_root(&td, config).unwrap().unwrap(); |
| 1309 | Ok(()) |
| 1310 | } |
| 1311 | |
| 1312 | #[test] |
| 1313 | fn test_composefs() -> Result<()> { |
nothing calls this directly
no test coverage detected