()
| 2015 | |
| 2016 | #[test] |
| 2017 | fn parse_jsonc_invalid_falls_back_to_empty() { |
| 2018 | let input = "not valid json at all !!!"; |
| 2019 | let v = parse_jsonc(input); |
| 2020 | assert_eq!(v, serde_json::json!({})); |
| 2021 | } |
| 2022 | |
| 2023 | #[test] |
| 2024 | fn parse_jsonc_empty_string() { |
nothing calls this directly
no test coverage detected