From 85a5641368287e366b27aff2027f8cbf2163fcd0 Mon Sep 17 00:00:00 2001 From: Marcelo Lira Date: Tue, 17 May 2011 15:46:03 -0300 Subject: Unit test for bug 634, based on code from Marcus Lindblom. Reviewed by Hugo Parente Reviewed by Luciano Wolf --- tests/QtCore/CMakeLists.txt | 1 + tests/QtCore/mockclass_test.py | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 tests/QtCore/mockclass_test.py (limited to 'tests/QtCore') diff --git a/tests/QtCore/CMakeLists.txt b/tests/QtCore/CMakeLists.txt index 623326321..84d0ad017 100644 --- a/tests/QtCore/CMakeLists.txt +++ b/tests/QtCore/CMakeLists.txt @@ -23,6 +23,7 @@ PYSIDE_TEST(duck_punching_test.py) PYSIDE_TEST(hash_test.py) PYSIDE_TEST(max_signals.py) PYSIDE_TEST(missing_symbols_test.py) +PYSIDE_TEST(mockclass_test.py) PYSIDE_TEST(python_conversion.py) PYSIDE_TEST(qabs_test.py) PYSIDE_TEST(qabstractitemmodel_test.py) diff --git a/tests/QtCore/mockclass_test.py b/tests/QtCore/mockclass_test.py new file mode 100644 index 000000000..4210efdf2 --- /dev/null +++ b/tests/QtCore/mockclass_test.py @@ -0,0 +1,27 @@ +# Test case for PySide bug 634 +# http://bugs.pyside.org/show_bug.cgi?id=634 +# Marcus Lindblom ; 2011-02-16 + +import unittest +from PySide.QtCore import QCoreApplication + +class Mock(object): + def __init__(self): + self.called = False + self.return_value = None + + def __call__(self, *args, **kwargs): + self.called = True + return self.return_value + + +class MockClassTest(unittest.TestCase): + def testMockQCoreApplication(self): + mock = Mock() + setattr(QCoreApplication, 'instance', mock) + QCoreApplication.instance() + self.assert_(mock.called) + +if __name__ == '__main__': + unittest.main() + -- cgit v1.2.3