()
| 198 | |
| 199 | #[test] |
| 200 | fn test_context_new() { |
| 201 | let header = ChangeHeader::builder().message("Test").build(); |
| 202 | let ctx = AssemblyContext::new(header); |
| 203 | assert_eq!(ctx.hunk_count(), 0); |
| 204 | assert_eq!(ctx.dependency_count(), 0); |
| 205 | } |
| 206 | |
| 207 | #[test] |
| 208 | fn test_context_with_capacity() { |