Add basic gstreamer tests
This commit is contained in:
parent
4552784637
commit
925f1b2191
16
tests/backends/gstreamer.py
Normal file
16
tests/backends/gstreamer.py
Normal file
@ -0,0 +1,16 @@
|
||||
import unittest
|
||||
|
||||
from mopidy.backends.gstreamer import GStreamerBackend
|
||||
|
||||
from tests.backends import BasePlaybackControllerTest
|
||||
|
||||
class GStreamerPlaybackControllerTest(BasePlaybackControllerTest, unittest.TestCase):
|
||||
uri = ['file://data/song1.mp3',
|
||||
'file://data/song2.mp3',
|
||||
'file://data/song3.mp3',
|
||||
]
|
||||
|
||||
backend_class = GStreamerBackend
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Loading…
Reference in New Issue
Block a user