mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-10 23:18:55 +01:00
Add a simple test for the CboRoaringBitmapCodec
This commit is contained in:
parent
c4b0c57059
commit
e41a3822a6
@ -67,3 +67,18 @@ impl heed::BytesEncode<'_> for CboRoaringBitmapCodec {
|
|||||||
Some(Cow::Owned(vec))
|
Some(Cow::Owned(vec))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
use std::iter::FromIterator;
|
||||||
|
use heed::{BytesEncode, BytesDecode};
|
||||||
|
use super::*;
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn limit_four() {
|
||||||
|
let input = RoaringBitmap::from_iter(vec![0, 1, 2, 3]);
|
||||||
|
let bytes = CboRoaringBitmapCodec::bytes_encode(&input).unwrap();
|
||||||
|
let output = CboRoaringBitmapCodec::bytes_decode(&bytes).unwrap();
|
||||||
|
assert_eq!(input, output);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user