()
| 125 | |
| 126 | #[test] |
| 127 | fn single_int_field() { |
| 128 | let doc = encode(&json!({"status": 200})); |
| 129 | let key = build_group_key(&doc, &["status".into()]); |
| 130 | assert_eq!(key, "[200]"); |
| 131 | } |
| 132 | |
| 133 | #[test] |
| 134 | fn multiple_fields() { |
nothing calls this directly
no test coverage detected