summaryrefslogtreecommitdiff
path: root/ext/pybind11/tests/test_copy_move_policies.py
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pybind11/tests/test_copy_move_policies.py')
-rw-r--r--ext/pybind11/tests/test_copy_move_policies.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/ext/pybind11/tests/test_copy_move_policies.py b/ext/pybind11/tests/test_copy_move_policies.py
new file mode 100644
index 000000000..edcf38075
--- /dev/null
+++ b/ext/pybind11/tests/test_copy_move_policies.py
@@ -0,0 +1,15 @@
+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)