()
| 317 | |
| 318 | #[test] |
| 319 | fn test_split_clone() { |
| 320 | let cmd = Split::new("feature").with_source("main").with_switch(true); |
| 321 | let cloned = cmd.clone(); |
| 322 | |
| 323 | assert_eq!(cloned.name, cmd.name); |
| 324 | assert_eq!(cloned.source, cmd.source); |
| 325 | assert_eq!(cloned.switch, cmd.switch); |
| 326 | } |
| 327 | } |
nothing calls this directly
no test coverage detected