mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
c68afb5f53
Original commit message from CVS: Backport from 0.8 branch and added new .defs file from GStreamer 0.9
25 lines
874 B
Python
25 lines
874 B
Python
from common import gst, unittest
|
|
|
|
import gobject
|
|
|
|
class Availability(unittest.TestCase):
|
|
def testXOverlay(self):
|
|
assert hasattr(gst.interfaces, 'XOverlay')
|
|
assert issubclass(gst.interfaces.XOverlay, gobject.GInterface)
|
|
|
|
def testMixer(self):
|
|
assert hasattr(gst.interfaces, 'Mixer')
|
|
assert issubclass(gst.interfaces.Mixer, gobject.GInterface)
|
|
|
|
class FunctionCall(unittest.TestCase):
|
|
def FIXME_testXOverlay(self):
|
|
# obviously a testsuite is not allowed to instantiate this
|
|
# since it needs a running X or will fail. find some way to
|
|
# deal with that.
|
|
element = gst.element_factory_make('xvimagesink')
|
|
assert isinstance(element, gst.Element)
|
|
assert isinstance(element, gst.interfaces.XOverlay)
|
|
element.set_xwindow_id(0L)
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|