()
| 330 | |
| 331 | #[test] |
| 332 | fn string_escapes() { |
| 333 | let tokens = tokenize(r#""hello\nworld""#).unwrap(); |
| 334 | assert_eq!(tokens[0], Token::String("hello\nworld".into())); |
| 335 | } |
| 336 | |
| 337 | #[test] |
| 338 | fn duration_compound() { |
nothing calls this directly
no test coverage detected