()
| 1147 | |
| 1148 | #[test] |
| 1149 | fn test_directory_archive_create() { |
| 1150 | let temp_dir = TempDir::new().unwrap(); |
| 1151 | let archive_dir = temp_dir.path().join("archive"); |
| 1152 | |
| 1153 | let archive = DirectoryArchive::new(&archive_dir).unwrap(); |
| 1154 | assert!(archive.root().exists()); |
| 1155 | } |
| 1156 | |
| 1157 | #[test] |
| 1158 | fn test_directory_archive_create_file() { |