()
| 216 | |
| 217 | #[test] |
| 218 | fn test_repl_arguments() { |
| 219 | let arguments = vec!["gitql".to_string(), "--repos".to_string(), ".".to_string()]; |
| 220 | let command = parse_arguments(&arguments); |
| 221 | assert!(matches!(command, Command::ReplMode { .. })); |
| 222 | } |
| 223 | |
| 224 | #[test] |
| 225 | fn test_query_arguments() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…