Add test_consume_off_by_default
This commit is contained in:
parent
ff4e8ba33a
commit
496a7d19dc
@ -95,6 +95,7 @@ class BasePlaybackController(object):
|
||||
state = STOPPED
|
||||
repeat = False
|
||||
shuffle = False
|
||||
consume = False
|
||||
|
||||
def __init__(self, backend):
|
||||
self.backend = backend
|
||||
|
||||
@ -693,3 +693,6 @@ class BasePlaybackControllerTest(object):
|
||||
|
||||
def test_shufflet_off_by_default(self):
|
||||
self.assertEqual(self.playback.shuffle, False)
|
||||
|
||||
def test_consume_off_by_default(self):
|
||||
self.assertEqual(self.playback.consume, False)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user