()
| 558 | |
| 559 | #[test] |
| 560 | fn test_atom_from_edge_map() { |
| 561 | let em = EdgeUpdate { |
| 562 | edges: vec![], |
| 563 | inode: test_hash_position(0), |
| 564 | }; |
| 565 | let atom: Atom<Hash> = em.into(); |
| 566 | assert!(atom.is_edge_map()); |
| 567 | } |
| 568 | |
| 569 | // Insertion Tests |
| 570 |
nothing calls this directly
no test coverage detected