()
| 791 | |
| 792 | #[test] |
| 793 | fn test_edit_display() { |
| 794 | let graph_op: GraphOp<Hash> = GraphOp::Edit { |
| 795 | change: Atom::Insertion(test_new_vertex()), |
| 796 | local: Local::new("file.rs", 50), |
| 797 | encoding: None, |
| 798 | }; |
| 799 | |
| 800 | let display = format!("{}", graph_op); |
| 801 | assert!(display.contains("Edit")); |
| 802 | assert!(display.contains("file.rs")); |
| 803 | assert!(display.contains("50")); |
| 804 | } |
| 805 | |
| 806 | // Atom Iterator Tests |
| 807 |
nothing calls this directly
no test coverage detected