Mock event triggering to fix tests

This commit is contained in:
Stein Magnus Jodal 2010-08-24 20:24:26 +02:00
parent 05d44d2915
commit 5be0aadf0c

View File

@ -64,6 +64,12 @@ class DummyPlaybackController(BasePlaybackController):
def _stop(self):
return True
def _trigger_started_playing_event(self):
pass # noop
def _trigger_stopped_playing_event(self):
pass # noop
class DummyStoredPlaylistsController(BaseStoredPlaylistsController):
_playlists = []