Add test_shufflet_off_by_default
This commit is contained in:
parent
458ff52b86
commit
6d054e5367
@ -94,6 +94,7 @@ class BasePlaybackController(object):
|
||||
|
||||
state = STOPPED
|
||||
repeat = False
|
||||
shuffle = False
|
||||
|
||||
def __init__(self, backend):
|
||||
self.backend = backend
|
||||
|
||||
@ -687,3 +687,6 @@ class BasePlaybackControllerTest(object):
|
||||
|
||||
def test_repeat_off_by_default(self):
|
||||
self.assertEqual(self.playback.repeat, False)
|
||||
|
||||
def test_shufflet_off_by_default(self):
|
||||
self.assertEqual(self.playback.shuffle, False)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user