()
| 472 | |
| 473 | #[test] |
| 474 | fn bool_keyword() { |
| 475 | let input = "printmotd yes\r\n"; |
| 476 | let result: Map<String, Value> = parse_text_to_map(input).unwrap(); |
| 477 | assert_eq!(result.get("printmotd").unwrap(), &Value::Bool(true)); |
| 478 | } |
| 479 | |
| 480 | #[test] |
| 481 | fn multiarg_string_with_spaces_no_quotes_keyword() { |
nothing calls this directly
no test coverage detected