()
| 118 | |
| 119 | #[test] |
| 120 | fn single_string_field() { |
| 121 | let doc = encode(&json!({"name": "alice", "age": 30})); |
| 122 | let key = build_group_key(&doc, &["name".into()]); |
| 123 | assert_eq!(key, r#"["alice"]"#); |
| 124 | } |
| 125 | |
| 126 | #[test] |
| 127 | fn single_int_field() { |
nothing calls this directly
no test coverage detected