()
| 398 | |
| 399 | #[test] |
| 400 | fn test_search_up() { |
| 401 | // Test with a path that doesn't have any landmarks |
| 402 | let result = search_up_file(std::env::temp_dir(), &["nonexistent_landmark_xyz"]); |
| 403 | assert!(result.is_none()); |
| 404 | } |
| 405 | |
| 406 | #[test] |
| 407 | fn test_default_prefix() { |
nothing calls this directly
no test coverage detected