Add GStreamerCurrentPlaylistHandlerTest
This commit is contained in:
parent
541017fa24
commit
10fa84dd1e
@ -2,9 +2,10 @@ import unittest
|
||||
|
||||
from mopidy.backends.gstreamer import GStreamerBackend
|
||||
|
||||
from tests.backends import BasePlaybackControllerTest
|
||||
from tests.backends import (BasePlaybackControllerTest,
|
||||
BaseCurrentPlaylistControllerTest)
|
||||
|
||||
class GStreamerPlaybackControllerTest(BasePlaybackControllerTest, unittest.TestCase):
|
||||
class GStreamerCurrentPlaylistHandlerTest(BaseCurrentPlaylistControllerTest, unittest.TestCase):
|
||||
uri = ['file://data/song1.mp3',
|
||||
'file://data/song2.mp3',
|
||||
'file://data/song3.mp3',
|
||||
@ -12,5 +13,8 @@ class GStreamerPlaybackControllerTest(BasePlaybackControllerTest, unittest.TestC
|
||||
|
||||
backend_class = GStreamerBackend
|
||||
|
||||
class GStreamerPlaybackControllerTest(BasePlaybackControllerTest, unittest.TestCase):
|
||||
backend_class = GStreamerBackend
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user