()
| 1012 | |
| 1013 | #[test] |
| 1014 | fn test_turn_changes_all_path_strings() { |
| 1015 | let changes = TurnChanges::new() |
| 1016 | .with_modified(vec![PathBuf::from("src/main.rs")]) |
| 1017 | .with_added(vec![PathBuf::from("src/lib.rs")]); |
| 1018 | |
| 1019 | let strings = changes.all_path_strings(); |
| 1020 | assert_eq!(strings, vec!["src/main.rs", "src/lib.rs"]); |
| 1021 | } |
| 1022 | |
| 1023 | #[test] |
| 1024 | fn test_turn_changes_file_count_mixed() { |
nothing calls this directly
no test coverage detected