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