summaryrefslogtreecommitdiffstats
path: root/tests/test_source.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_source.py')
-rw-r--r--tests/test_source.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_source.py b/tests/test_source.py
index fd5f310..8e7e81c 100644
--- a/tests/test_source.py
+++ b/tests/test_source.py
@@ -90,5 +90,12 @@ class TestSource(unittest.TestCase):
assert dispatched[0]
+
+class TestTimeout(unittest.TestCase):
+ def test504337(self):
+ timeout_source = gobject.Timeout(20)
+ idle_source = gobject.Idle()
+
+
if __name__ == '__main__':
unittest.main()