Add STOPPED assert to BasePlaybackControllerTest.test_next_for_empty_playlist

This commit is contained in:
Thomas Adamcik 2010-04-06 21:30:31 +02:00
parent 3d11023bdc
commit 4a8a30d3e4

View File

@ -308,6 +308,7 @@ class BasePlaybackControllerTest(object):
def test_next_for_empty_playlist(self):
self.playback.next()
self.assertEqual(self.playback.state, self.playback.STOPPED)
@populate_playlist
def test_previous(self):