Remove test_get_pybytes
This commit is contained in:
parent
b0925e1109
commit
69cbf1a494
|
@ -1,31 +1,13 @@
|
||||||
use pyo3::prelude::*;
|
use pyo3::prelude::*;
|
||||||
use pyo3::types::PyBytes;
|
|
||||||
use pyo3::wrap_pyfunction;
|
use pyo3::wrap_pyfunction;
|
||||||
|
|
||||||
mod common;
|
mod common;
|
||||||
|
|
||||||
#[pyfunction]
|
|
||||||
fn get_pybytes() -> PyObject {
|
|
||||||
let gil = Python::acquire_gil();
|
|
||||||
let py = gil.python();
|
|
||||||
|
|
||||||
PyBytes::new(py, b"Hello World").into()
|
|
||||||
}
|
|
||||||
|
|
||||||
#[pyfunction]
|
#[pyfunction]
|
||||||
fn bytes_pybytes_conversion(bytes: &[u8]) -> &[u8] {
|
fn bytes_pybytes_conversion(bytes: &[u8]) -> &[u8] {
|
||||||
bytes
|
bytes
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn test_get_pybytes() {
|
|
||||||
let gil = Python::acquire_gil();
|
|
||||||
let py = gil.python();
|
|
||||||
|
|
||||||
let get_bytes = wrap_pyfunction!(get_pybytes)(py);
|
|
||||||
py_assert!(py, get_bytes, "get_bytes() == b'Hello World'");
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_pybytes_bytes_conversion() {
|
fn test_pybytes_bytes_conversion() {
|
||||||
let gil = Python::acquire_gil();
|
let gil = Python::acquire_gil();
|
||||||
|
|
Loading…
Reference in New Issue