()
| 5480 | |
| 5481 | #[test] |
| 5482 | fn test_load_toml_file_missing() { |
| 5483 | let val = load_toml_file(Path::new("/nonexistent/file.toml")).unwrap(); |
| 5484 | assert!(val.is_table()); |
| 5485 | assert!(val.as_table().unwrap().is_empty()); |
| 5486 | } |
| 5487 | |
| 5488 | #[test] |
| 5489 | fn test_load_toml_file_valid() { |
nothing calls this directly
no test coverage detected