Add test_consume_off_by_default

This commit is contained in:
Thomas Adamcik 2010-02-18 16:18:50 +01:00
parent ff4e8ba33a
commit 496a7d19dc
2 changed files with 4 additions and 0 deletions

View File

@ -95,6 +95,7 @@ class BasePlaybackController(object):
state = STOPPED
repeat = False
shuffle = False
consume = False
def __init__(self, backend):
self.backend = backend

View File

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