()
| 81 | |
| 82 | #[test] |
| 83 | fn test_python_parse_default() { |
| 84 | Python::attach(|py| { |
| 85 | let v = PythonParse::default().python_parse(py, b"[123]").unwrap(); |
| 86 | assert_eq!(v.to_string(), "[123]"); |
| 87 | }); |
| 88 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…