aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phonon/bug_328.py
blob: 4171b3f53c299cd6f24f5f58d361897953ff8bac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/python

from PySide import QtCore, QtGui
from PySide.phonon import Phonon
import unittest

class TestBug(unittest.TestCase):
    def myCB(self):
        pass

    def testForNotifierSignals(self):
        # this test only check if the signals are present
        notifier = Phonon.BackendCapabilities.Notifier()
        notifier.capabilitiesChanged.connect(self.myCB)
        notifier.availableAudioOutputDevicesChanged.connect(self.myCB)

        self.assert_(True)