()
| 373 | |
| 374 | #[test] |
| 375 | fn test_display_string() { |
| 376 | let gil = Python::acquire_gil(); |
| 377 | let py = gil.python(); |
| 378 | let v = "Hello\n".to_py_object(py).into_object(); |
| 379 | assert_eq!(format!("{}", v), "Hello\n"); |
| 380 | } |
| 381 | |
| 382 | #[test] |
| 383 | fn test_compare() { |
nothing calls this directly
no test coverage detected