()
| 726 | |
| 727 | #[test] |
| 728 | fn test_parse_simple_json_map() { |
| 729 | let json = r#"{ "foo": "bar", "baz": "qux" }"#; |
| 730 | let map = parse_simple_json_map(json); |
| 731 | assert_eq!(map.get("foo").unwrap(), "bar"); |
| 732 | assert_eq!(map.get("baz").unwrap(), "qux"); |
| 733 | } |
| 734 | |
| 735 | #[test] |
| 736 | fn test_parse_string_array() { |
nothing calls this directly
no test coverage detected