()
| 257 | |
| 258 | #[test] |
| 259 | fn test_split_with_source() { |
| 260 | let cmd = Split::new("feature").with_source("main"); |
| 261 | assert_eq!(cmd.name, "feature"); |
| 262 | assert_eq!(cmd.source, Some("main".to_string())); |
| 263 | } |
| 264 | |
| 265 | #[test] |
| 266 | fn test_split_with_switch() { |
nothing calls this directly
no test coverage detected