()
| 489 | |
| 490 | #[test] |
| 491 | fn err_multiarg_repeated_keyword() { |
| 492 | let input = "hostkeyalgorithms ssh-ed25519-cert-v01@openssh.com\r\n hostkeyalgorithms ecdsa-sha2-nistp256-cert-v01@openssh.com\r\n"; |
| 493 | let result = parse_text_to_map(input); |
| 494 | assert!(result.is_err()); |
| 495 | } |
| 496 | |
| 497 | #[test] |
| 498 | fn empty_string_is_ok() { |
nothing calls this directly
no test coverage detected