()
| 502 | |
| 503 | #[test] |
| 504 | fn test_atom_is_edge_map() { |
| 505 | let atom: Atom<Hash> = Atom::EdgeUpdate(EdgeUpdate { |
| 506 | edges: vec![], |
| 507 | inode: test_hash_position(0), |
| 508 | }); |
| 509 | |
| 510 | assert!(atom.is_edge_map()); |
| 511 | assert!(!atom.is_new_vertex()); |
| 512 | } |
| 513 | |
| 514 | #[test] |
| 515 | fn test_atom_as_new_vertex() { |
nothing calls this directly
no test coverage detected