()
| 1103 | |
| 1104 | #[test] |
| 1105 | fn test_add_with_files_iterator() { |
| 1106 | let files = ["a.rs", "b.rs", "c.rs"]; |
| 1107 | let add = Add::new().with_files(files.iter().copied()); |
| 1108 | assert_eq!(add.files.len(), 3); |
| 1109 | } |
| 1110 | |
| 1111 | #[test] |
| 1112 | fn test_add_recursive_and_no_recursive_conflict() { |
nothing calls this directly
no test coverage detected