Create a test change with content
(content: &[u8])
| 786 | |
| 787 | /// Create a test change with content |
| 788 | fn make_change(content: &[u8]) -> Change { |
| 789 | let mut change = Change::empty(ChangeHeader::new("test")); |
| 790 | change.contents = content.to_vec(); |
| 791 | change |
| 792 | } |
| 793 | |
| 794 | /// Create a minimal alive graph with one node |
| 795 | fn make_simple_graph(node: GraphNode<NodeId>) -> AliveGraph { |
no outgoing calls