()
| 894 | |
| 895 | #[test] |
| 896 | fn test_recorded_take_actions() { |
| 897 | let mut builder = RecordBuilder::new(); |
| 898 | builder.add_hunk(create_test_file_add_hunk()); |
| 899 | |
| 900 | let recorded = builder.finish(); |
| 901 | let actions = recorded.take_actions(); |
| 902 | |
| 903 | assert_eq!(actions.len(), 1); |
| 904 | } |
| 905 | |
| 906 | #[test] |
| 907 | fn test_recorded_take_contents() { |
nothing calls this directly
no test coverage detected