Create a test change with content
(content: &[u8])
| 753 | |
| 754 | /// Create a test change with content |
| 755 | fn make_change(content: &[u8]) -> Change { |
| 756 | let mut change = Change::empty(ChangeHeader::new("test")); |
| 757 | change.contents = content.to_vec(); |
| 758 | change |
| 759 | } |
| 760 | |
| 761 | /// Create a minimal alive graph with one node |
| 762 | fn make_simple_graph(node: GraphNode<NodeId>) -> AliveGraph { |
no outgoing calls