mirror of
https://github.com/pybind/pybind11.git
synced 2026-03-14 20:27:47 +00:00
Introduce pybind11::detail::is_move_constructible (#4631)
To support the use case captured in the new test_vector_unique_ptr_member.cpp
This commit is contained in:
committed by
GitHub
parent
071f35ab85
commit
07725c28c0
14
tests/test_vector_unique_ptr_member.py
Normal file
14
tests/test_vector_unique_ptr_member.py
Normal file
@@ -0,0 +1,14 @@
|
||||
import pytest
|
||||
|
||||
from pybind11_tests import vector_unique_ptr_member as m
|
||||
|
||||
|
||||
@pytest.mark.parametrize("num_elems", range(3))
|
||||
def test_create(num_elems):
|
||||
vo = m.VectorOwner.Create(num_elems)
|
||||
assert vo.data_size() == num_elems
|
||||
|
||||
|
||||
def test_cast():
|
||||
vo = m.VectorOwner.Create(0)
|
||||
assert m.py_cast_VectorOwner_ptr(vo) is vo
|
||||
Reference in New Issue
Block a user