Add test that ensures that initial state is stoped
This commit is contained in:
parent
7c2accf2bc
commit
f3d7b54382
@ -165,6 +165,10 @@ class BasePlaybackControllerTest(object):
|
||||
|
||||
def setUp(self):
|
||||
self.backend = self.backend_class()
|
||||
self.playback = self.backend.playback
|
||||
|
||||
def test_initial_state_is_stopped(self):
|
||||
self.assertEqual(self.playback.state, self.playback.STOPPED)
|
||||
|
||||
def test_play_with_empty_playlist(self):
|
||||
playback = self.backend.playback
|
||||
|
||||
Loading…
Reference in New Issue
Block a user