()
| 321 | |
| 322 | #[test] |
| 323 | fn encode_precision_12() { |
| 324 | let hash = geohash_encode(139.6917, 35.6895, 12); // Tokyo |
| 325 | assert_eq!(hash.len(), 12); |
| 326 | } |
| 327 | |
| 328 | #[test] |
| 329 | fn decode_invalid_chars() { |
nothing calls this directly
no test coverage detected