Add GStreamerCurrentPlaylistHandlerTest

This commit is contained in:
Thomas Adamcik 2010-02-07 05:13:50 +01:00
parent 541017fa24
commit 10fa84dd1e

View File

@ -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()