summaryrefslogtreecommitdiff
path: root/libs/python/test/register_ptr_test.py
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2013-06-25 22:59:01 +0000
committer <>2013-09-27 11:49:28 +0000
commit8c4528713d907ee2cfd3bfcbbad272c749867f84 (patch)
treec09e2ce80f47b90c85cc720f5139089ad9c8cfff /libs/python/test/register_ptr_test.py
downloadboost-tarball-baserock/morph.tar.gz
Imported from /home/lorry/working-area/delta_boost-tarball/boost_1_54_0.tar.bz2.boost_1_54_0baserock/morph
Diffstat (limited to 'libs/python/test/register_ptr_test.py')
-rw-r--r--libs/python/test/register_ptr_test.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/libs/python/test/register_ptr_test.py b/libs/python/test/register_ptr_test.py
new file mode 100644
index 000000000..674e5572f
--- /dev/null
+++ b/libs/python/test/register_ptr_test.py
@@ -0,0 +1,25 @@
+# Copyright David Abrahams 2004. Distributed under the Boost
+# Software License, Version 1.0. (See accompanying
+# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
+import unittest
+from register_ptr import *
+
+class RegisterPtrTest(unittest.TestCase):
+
+ def testIt(self):
+
+ class B(A):
+ def f(self):
+ return 10
+
+ a = New() # this must work
+ b = B()
+ self.assertEqual(Call(a), 0)
+ self.assertEqual(Call(b), 10)
+ def fails():
+ Fail(A())
+ self.assertRaises(TypeError, fails)
+ self.assertEqual(Fail(a), 0) # ok, since a is held by shared_ptr
+
+if __name__ == '__main__':
+ unittest.main()