You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
488 B
15 lines
488 B
import pytest
|
|
|
|
|
|
def test_lacking_copy_ctor():
|
|
from pybind11_tests import lacking_copy_ctor
|
|
with pytest.raises(RuntimeError) as excinfo:
|
|
lacking_copy_ctor.get_one()
|
|
assert "the object is non-copyable!" in str(excinfo.value)
|
|
|
|
|
|
def test_lacking_move_ctor():
|
|
from pybind11_tests import lacking_move_ctor
|
|
with pytest.raises(RuntimeError) as excinfo:
|
|
lacking_move_ctor.get_one()
|
|
assert "the object is neither movable nor copyable!" in str(excinfo.value)
|