()
| 615 | |
| 616 | #[test] |
| 617 | fn test_diff_with_files_string() { |
| 618 | let diff = Diff::new().with_files(vec![String::from("test.rs")]); |
| 619 | assert_eq!(diff.files, vec!["test.rs"]); |
| 620 | } |
| 621 | |
| 622 | #[test] |
| 623 | fn test_diff_with_change() { |
nothing calls this directly
no test coverage detected