()
| 571 | |
| 572 | #[test] |
| 573 | fn test_non_bmp() { |
| 574 | let gil = Python::acquire_gil(); |
| 575 | let py = gil.python(); |
| 576 | let s = "\u{1F30F}"; |
| 577 | let py_string = s.to_py_object(py).into_object(); |
| 578 | assert_eq!(s, py_string.extract::<String>(py).unwrap()); |
| 579 | } |
| 580 | |
| 581 | #[test] |
| 582 | fn test_extract_str() { |
nothing calls this directly
no test coverage detected