()
| 270 | |
| 271 | #[test] |
| 272 | fn test_split_builder_chain() { |
| 273 | let cmd = Split::new("hotfix") |
| 274 | .with_source("release-1.0") |
| 275 | .with_switch(true); |
| 276 | |
| 277 | assert_eq!(cmd.name, "hotfix"); |
| 278 | assert_eq!(cmd.source, Some("release-1.0".to_string())); |
| 279 | assert!(cmd.switch); |
| 280 | } |
| 281 | |
| 282 | // Validation Tests |
| 283 |
nothing calls this directly
no test coverage detected