()
| 276 | |
| 277 | #[test] |
| 278 | fn tokenize_string_repeat() { |
| 279 | let tokens = tokenize_format_string("hello{0-9}world"); |
| 280 | assert_eq!(tokens[1], Token::CharRange('0' as u32, '9' as u32)) |
| 281 | } |
| 282 | |
| 283 | #[test] |
| 284 | fn tokenize_string_string() { |
nothing calls this directly
no test coverage detected