()
| 5344 | |
| 5345 | #[test] |
| 5346 | fn test_load_json_file_missing() { |
| 5347 | let val = load_json_file(Path::new("/nonexistent/file.json")); |
| 5348 | assert!(val.is_object()); |
| 5349 | assert!(val.as_object().unwrap().is_empty()); |
| 5350 | } |
| 5351 | |
| 5352 | #[test] |
| 5353 | fn test_load_json_file_valid() { |
nothing calls this directly
no test coverage detected