()
| 365 | |
| 366 | #[test] |
| 367 | fn test_debug_string() { |
| 368 | let gil = Python::acquire_gil(); |
| 369 | let py = gil.python(); |
| 370 | let v = "Hello\n".to_py_object(py).into_object(); |
| 371 | assert_eq!(format!("{:?}", v), "'Hello\\n'"); |
| 372 | } |
| 373 | |
| 374 | #[test] |
| 375 | fn test_display_string() { |
nothing calls this directly
no test coverage detected