()
| 282 | |
| 283 | #[test] |
| 284 | fn tokenize_string_string() { |
| 285 | let tokens = tokenize_format_string("hello{0-9}world"); |
| 286 | assert_eq!(tokens[2], Token::String(String::from("world"))) |
| 287 | } |
| 288 | |
| 289 | #[test] |
| 290 | fn properly_tokenize_double_brackets() { |
nothing calls this directly
no test coverage detected