aboutsummaryrefslogtreecommitdiffstats
path: root/tests/samplebinding/ownership_invalidate_parent_test.py
diff options
context:
space:
mode:
authorLauro Neto <lauro.neto@openbossa.org>2009-11-26 18:27:43 -0300
committerLauro Neto <lauro.neto@openbossa.org>2009-11-27 16:58:02 -0300
commit0931a0322e19541a86b73fad81da43c10c75d15c (patch)
tree97528b79505685e9cc561a11cd7daf3fb1258dd0 /tests/samplebinding/ownership_invalidate_parent_test.py
parent4521af39d3ba97bb206f3bf321f77d0c84f5f303 (diff)
Add invalidate parent test
Using BlackBox to invalidate the parent
Diffstat (limited to 'tests/samplebinding/ownership_invalidate_parent_test.py')
-rw-r--r--tests/samplebinding/ownership_invalidate_parent_test.py49
1 files changed, 49 insertions, 0 deletions
diff --git a/tests/samplebinding/ownership_invalidate_parent_test.py b/tests/samplebinding/ownership_invalidate_parent_test.py
new file mode 100644
index 000000000..c3400822f
--- /dev/null
+++ b/tests/samplebinding/ownership_invalidate_parent_test.py
@@ -0,0 +1,49 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# This file is part of the Shiboken Python Bindings Generator project.
+#
+# Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+#
+# Contact: PySide team <contact@pyside.org>
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public License
+# version 2.1 as published by the Free Software Foundation. Please
+# review the following information to ensure the GNU Lesser General
+# Public License version 2.1 requirements will be met:
+# http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+# #
+# This program is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+# 02110-1301 USA
+
+'''Tests for destroying the parent'''
+
+import unittest
+
+from sample import ObjectType, BlackBox
+
+
+class InvalidateParentTest(unittest.TestCase):
+ '''Test case for deleting an parent object'''
+
+ def testInvalidateParent(self):
+ '''Invalidate parent should invalidate children'''
+ parent = ObjectType.create()
+ child = ObjectType(parent)
+ bbox = BlackBox()
+
+ bbox.keepObjectType(parent) # Should invalidate the parent
+
+ self.assertRaises(RuntimeError, parent.objectName)
+ self.assertRaises(RuntimeError, child.objectName)
+
+if __name__ == '__main__':
+ unittest.main()