aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/copy_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/samplebinding/copy_test.py')
-rw-r--r--tests/samplebinding/copy_test.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/samplebinding/copy_test.py b/tests/samplebinding/copy_test.py
index 6f761784a..3a0ff1876 100644
--- a/tests/samplebinding/copy_test.py
+++ b/tests/samplebinding/copy_test.py
@@ -43,6 +43,18 @@ class SimpleCopy(unittest.TestCase):
self.assertEqual(point, new_point)
+class DeepCopy(unittest.TestCase):
+ '''Deep copy with shiboken objects'''
+
+ def testDeepCopy(self):
+ '''Deep copy of value types'''
+ point = Point(3.1, 4.2)
+ new_point = copy.deepcopy([point])[0]
+
+ self.assert_(point is not new_point)
+ self.assertEqual(point, new_point)
+
+
if __name__ == '__main__':
unittest.main()