()
| 944 | |
| 945 | #[test] |
| 946 | fn test_recorded_actions() { |
| 947 | let mut builder = RecordBuilder::new(); |
| 948 | builder.add_hunk(create_test_file_add_hunk()); |
| 949 | builder.add_hunk(create_test_file_add_hunk()); |
| 950 | |
| 951 | let recorded = builder.finish(); |
| 952 | |
| 953 | assert_eq!(recorded.actions().len(), 2); |
| 954 | } |
| 955 | |
| 956 | // Configuration Tests |
| 957 |
nothing calls this directly
no test coverage detected