()
| 153 | |
| 154 | #[test] |
| 155 | fn null_field_value() { |
| 156 | let doc = encode(&json!({"v": null})); |
| 157 | let key = build_group_key(&doc, &["v".into()]); |
| 158 | assert_eq!(key, "[null]"); |
| 159 | } |
| 160 | |
| 161 | #[test] |
| 162 | fn float_field() { |
nothing calls this directly
no test coverage detected