()
| 548 | |
| 549 | #[test] |
| 550 | fn test_output_item_with_metadata() { |
| 551 | let meta = FileMetadata::executable(); |
| 552 | let item = OutputItem::file(Inode::ROOT, "script.sh".to_string(), Position::ROOT) |
| 553 | .with_metadata(meta); |
| 554 | assert!(item.metadata.is_executable()); |
| 555 | } |
| 556 | |
| 557 | // ------------------------------------------------------------------------- |
| 558 | // OutputStats Tests |
nothing calls this directly
no test coverage detected