()
| 419 | mod tests { |
| 420 | #[test] |
| 421 | fn test_hexdigit_to_keycode() { |
| 422 | for c in "ABCDEFHIJKLMOJPQRSTUVWYXYZabcdefghijklmnopqrstuvwxyz".chars() { |
| 423 | let escaped = c.escape_unicode(); |
| 424 | for out_c in escaped.skip(3).take_while(|x| *x != '}') { |
| 425 | println!("{}", out_c); |
| 426 | } |
| 427 | } |
| 428 | } |
| 429 | } |
nothing calls this directly
no outgoing calls
no test coverage detected