()
| 6233 | |
| 6234 | #[test] |
| 6235 | fn test_parse_jsonc_empty_string() { |
| 6236 | let val = parse_jsonc(""); |
| 6237 | assert!(val.is_object()); |
| 6238 | assert!(val.as_object().unwrap().is_empty()); |
| 6239 | } |
| 6240 | |
| 6241 | #[test] |
| 6242 | fn test_parse_jsonc_only_comments() { |
nothing calls this directly
no test coverage detected