()
| 1993 | |
| 1994 | #[test] |
| 1995 | fn parse_jsonc_trailing_comma_array() { |
| 1996 | let input = r#"{"items": [1, 2, 3,]}"#; |
| 1997 | let v = parse_jsonc(input); |
| 1998 | assert_eq!(v["items"][2], 3); |
| 1999 | } |
| 2000 | |
| 2001 | #[test] |
| 2002 | fn parse_jsonc_combined() { |
nothing calls this directly
no test coverage detected