()
| 209 | |
| 210 | #[test] |
| 211 | fn test_empty_arguments() { |
| 212 | let arguments = vec!["gitql".to_string()]; |
| 213 | let command = parse_arguments(&arguments); |
| 214 | assert!(matches!(command, Command::ReplMode { .. })); |
| 215 | } |
| 216 | |
| 217 | #[test] |
| 218 | fn test_repl_arguments() { |
nothing calls this directly
no test coverage detected
searching dependent graphs…