()
| 309 | |
| 310 | #[test] |
| 311 | fn remove_document() { |
| 312 | let mut idx = GeohashIndex::new("places", "loc", 6); |
| 313 | idx.index_document("doc1", &Geometry::point(10.0, 20.0)); |
| 314 | idx.remove_document("doc1"); |
| 315 | assert_eq!(idx.len(), 0); |
| 316 | } |
| 317 | |
| 318 | #[test] |
| 319 | fn checkpoint_roundtrip() { |
nothing calls this directly
no test coverage detected