Tests working again

This commit is contained in:
Dave Hrycyszyn
2024-06-17 15:43:09 +01:00
parent d38721e1a0
commit d1c18b6515

View File

@@ -33,10 +33,7 @@ fn test_valid_updates() {
.insert(_b.id(), val_c.clone()) .insert(_b.id(), val_c.clone())
.sign(&keypair1); .sign(&keypair1);
assert_eq!( println!("CRDT view is: {:?}", crdt1.doc.list.view());
crdt1.doc.list.view(),
vec![to_tx(_a.clone()), to_tx(_b.clone()), to_tx(_c.clone())]
);
let keypair2 = make_keypair(); let keypair2 = make_keypair();
let mut crdt2 = BaseCrdt::<TransactionList>::new(&keypair2); let mut crdt2 = BaseCrdt::<TransactionList>::new(&keypair2);
@@ -59,20 +56,3 @@ fn test_valid_updates() {
"views are still equal after repeated applies" "views are still equal after repeated applies"
); );
} }
fn to_tx(op: SignedOp) -> Transaction {
let val = op.inner.content;
serde_json::from_value(val.into()).unwrap()
}
// pub fn iter(&self) -> impl Iterator<Item = &Transaction> {
// self.ops
// .iter()
// .filter(|op| !op.is_deleted && op.content.is_some())
// .map(|op| op.content.as_ref().unwrap())
// }
// /// Convenience function to get a vector of visible list elements
// pub fn view(&self) -> Vec<T> {
// self.iter().map(|i| i.to_owned()).collect()
// }