()
| 830 | |
| 831 | #[test] |
| 832 | fn test_file_metadata_directory() { |
| 833 | let wc = Memory::new(); |
| 834 | wc.add_directory("mydir"); |
| 835 | |
| 836 | let meta = wc.file_metadata("mydir").unwrap(); |
| 837 | assert!(meta.is_dir); |
| 838 | } |
| 839 | |
| 840 | #[test] |
| 841 | fn test_file_metadata_not_found() { |
nothing calls this directly
no test coverage detected