()
| 591 | |
| 592 | #[test] |
| 593 | fn test_add_with_files_strings() { |
| 594 | let add = Add::new().with_files(vec![String::from("README.md")]); |
| 595 | assert_eq!(add.files.len(), 1); |
| 596 | assert_eq!(add.files[0], "README.md"); |
| 597 | } |
| 598 | |
| 599 | #[test] |
| 600 | fn test_add_with_all() { |
nothing calls this directly
no test coverage detected