()
| 723 | |
| 724 | #[test] |
| 725 | fn test_output_config_builder_chain() { |
| 726 | let config = StatusOutputConfig::new() |
| 727 | .short() |
| 728 | .hide_untracked() |
| 729 | .filter_path("tests/"); |
| 730 | |
| 731 | assert!(config.short); |
| 732 | assert!(config.no_untracked); |
| 733 | assert_eq!(config.path_filter, Some("tests/".to_string())); |
| 734 | } |
| 735 | |
| 736 | // Status Options Conversion Tests |
| 737 |
nothing calls this directly
no test coverage detected