()
| 170 | |
| 171 | #[test] |
| 172 | fn test_parse_from_args_err() { |
| 173 | let options = Options::parse_from_args(&[ |
| 174 | "-k".to_owned(), |
| 175 | "unknown".to_owned(), |
| 176 | "-b".to_owned(), |
| 177 | "-l".to_owned(), |
| 178 | "cc,tokio_util,indicatif".to_owned(), |
| 179 | ]); |
| 180 | assert!(options.is_err()); |
| 181 | } |
| 182 | } |
nothing calls this directly
no outgoing calls
no test coverage detected