()
| 245 | |
| 246 | #[test] |
| 247 | fn test_arguments_with_version() { |
| 248 | let arguments = vec![ |
| 249 | "gitql".to_string(), |
| 250 | "dummy".to_string(), |
| 251 | "--version".to_string(), |
| 252 | ]; |
| 253 | let command = parse_arguments(&arguments); |
| 254 | assert_eq!(command, Command::Version); |
| 255 | } |
| 256 | |
| 257 | #[test] |
| 258 | fn test_arguments_with_valid_page_size() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…