gstreamer/testsuite/test_interface.py
Johan Dahlin 01b4bd0ab5 Require PyGTK 2.4
Original commit message from CVS:
Require PyGTK 2.4
2004-10-11 08:45:04 +00:00

23 lines
713 B
Python

from common import gst, unittest
import gobject
from gst import interfaces
class Availability(unittest.TestCase):
def testXOverlay(self):
assert hasattr(interfaces, 'XOverlay')
assert issubclass(interfaces.XOverlay, gobject.GInterface)
def testMixer(self):
assert hasattr(interfaces, 'Mixer')
assert issubclass(interfaces.Mixer, gobject.GInterface)
class FunctionCall(unittest.TestCase):
def testXOverlay(self):
element = gst.element_factory_make('xvimagesink')
assert isinstance(element, gst.Element)
assert isinstance(element, interfaces.XOverlay)
element.set_xwindow_id(0L)
if __name__ == "__main__":
unittest.main()