()
| 675 | |
| 676 | #[test] |
| 677 | fn test_status_builder_chain() { |
| 678 | let status = Status::new() |
| 679 | .with_path("src/") |
| 680 | .with_short(true) |
| 681 | .with_no_untracked(true); |
| 682 | |
| 683 | assert_eq!(status.path, Some("src/".to_string())); |
| 684 | assert!(status.short); |
| 685 | assert!(status.no_untracked); |
| 686 | } |
| 687 | |
| 688 | // StatusOutputConfig Tests |
| 689 |
nothing calls this directly
no test coverage detected