()
| 1063 | |
| 1064 | #[test] |
| 1065 | fn test_archive_manifest_display() { |
| 1066 | let mut manifest = ArchiveManifest::new(); |
| 1067 | manifest.add(ArchiveEntry::file("test.txt", 1024)); |
| 1068 | |
| 1069 | let display = format!("{}", manifest); |
| 1070 | assert!(display.contains("1 files")); |
| 1071 | assert!(display.contains("1024 bytes")); |
| 1072 | } |
| 1073 | |
| 1074 | // ArchiveOutcome Tests |
| 1075 |