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