()
| 209 | |
| 210 | #[test] |
| 211 | fn escaped_quote_in_string() { |
| 212 | let tokens = tokenize("'it''s'").unwrap(); |
| 213 | assert_eq!(tokens.len(), 1); |
| 214 | assert_eq!(tokens[0].text, "it's"); |
| 215 | } |
| 216 | |
| 217 | #[test] |
| 218 | fn latin_diacritics_in_string() { |
nothing calls this directly
no test coverage detected