We're only considering a small subset of the Gstreamer elements

This commit is contained in:
Stein Magnus Jodal 2012-09-01 00:49:12 +02:00
parent 45086fb11d
commit a452c49bd3
2 changed files with 2 additions and 2 deletions

View File

@ -71,7 +71,7 @@ def gstreamer_info():
other = []
other.append('Python wrapper: gst-python %s' % (
'.'.join(map(str, gst.get_pygst_version()))))
other.append('Elements:')
other.append('Relevant elements:')
for name, status in _gstreamer_check_elements():
other.append(' %s: %s' % (name, status))
return {

View File

@ -69,7 +69,7 @@ class DepsTest(unittest.TestCase):
self.assertIn('gst', result['path'])
self.assertIn('Python wrapper: gst-python', result['other'])
self.assertIn('.'.join(map(str, gst.get_pygst_version())), result['other'])
self.assertIn('Elements:', result['other'])
self.assertIn('Relevant elements:', result['other'])
def test_pykka_info(self):
result = deps.pykka_info()