()
| 435 | |
| 436 | #[test] |
| 437 | fn test_builder_prefix() { |
| 438 | let opts = OutputOptions::new().with_prefix("src/"); |
| 439 | assert_eq!(opts.prefix, "src/"); |
| 440 | |
| 441 | let opts = OutputOptions::new().with_prefix(""); |
| 442 | assert!(opts.prefix.is_empty()); |
| 443 | |
| 444 | let opts = OutputOptions::new().with_prefix("deeply/nested/path/"); |
| 445 | assert_eq!(opts.prefix, "deeply/nested/path/"); |
| 446 | } |
| 447 | |
| 448 | #[test] |
| 449 | fn test_builder_include_deleted() { |
nothing calls this directly
no test coverage detected