()
| 211 | |
| 212 | #[test] |
| 213 | fn parse_plain_literal() { |
| 214 | let tokens = parse_format("hello world").unwrap(); |
| 215 | assert_eq!(render(&tokens), "L(hello world)"); |
| 216 | } |
| 217 | |
| 218 | #[test] |
| 219 | fn parse_empty_string() { |
nothing calls this directly
no test coverage detected