()
| 609 | |
| 610 | #[test] |
| 611 | fn test_diff_with_files() { |
| 612 | let diff = Diff::new().with_files(vec!["a.rs", "b.rs"]); |
| 613 | assert_eq!(diff.files, vec!["a.rs", "b.rs"]); |
| 614 | } |
| 615 | |
| 616 | #[test] |
| 617 | fn test_diff_with_files_string() { |
nothing calls this directly
no test coverage detected