()
| 234 | |
| 235 | #[test] |
| 236 | fn test_arguments_with_help() { |
| 237 | let arguments = vec![ |
| 238 | "gitql".to_string(), |
| 239 | "dummy".to_string(), |
| 240 | "--help".to_string(), |
| 241 | ]; |
| 242 | let command = parse_arguments(&arguments); |
| 243 | assert_eq!(command, Command::Help); |
| 244 | } |
| 245 | |
| 246 | #[test] |
| 247 | fn test_arguments_with_version() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…