()
| 409 | |
| 410 | #[test] |
| 411 | fn invalid_time() { |
| 412 | let inputs = ["1 h 1:00:00", "1 h 1 h"]; |
| 413 | for input in inputs { |
| 414 | let parse_result = parse_interval_literal(input, SourceLocation::default()); |
| 415 | assert!(parse_result.is_err()); |
| 416 | } |
| 417 | } |
| 418 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…