aboutsummaryrefslogtreecommitdiffstats
path: root/tests/QtGui/bug_585.py
blob: 7c371503f7f20c1792df00397eed65190c10828e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
'''Test bug 585: http://bugs.openbossa.org/show_bug.cgi?id=585'''

from PySide import QtCore ,QtGui
import sys
import unittest


class Bug585(unittest.TestCase):
    def testCase(self):
        app = QtGui.QApplication([])
        self._tree = QtGui.QTreeWidget()
        self._tree.setColumnCount(2)
        i1 = QtGui.QTreeWidgetItem(self._tree, ['1', ])
        i2 = QtGui.QTreeWidgetItem(self._tree, ['2', ])
        refCount = sys.getrefcount(i1)

        # this function return None
        # because the topLevelItem does not has a parent item
        # but still have a TreeWidget as a parent
        self._tree.topLevelItem(0).parent()

        self.assertEqual(refCount, sys.getrefcount(i1))

if __name__ == '__main__':
    unittest.main()