()
| 279 | |
| 280 | #[test] |
| 281 | fn test_take_snapshot_empty_dir() { |
| 282 | let dir = TempDir::new().unwrap(); |
| 283 | let snapshot = take_snapshot(dir.path(), &[".atomic".to_string()]).unwrap(); |
| 284 | assert!(snapshot.is_empty()); |
| 285 | } |
| 286 | |
| 287 | #[test] |
| 288 | fn test_take_snapshot_with_files() { |
nothing calls this directly
no test coverage detected