From 3a4956cf43a3cba64a50b5856fb0ea4cfe719667 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Fri, 25 Dec 2009 13:58:27 +0100 Subject: [PATCH] Fix missing test coverage --- mopidy/handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mopidy/handler.py b/mopidy/handler.py index 40e5e5af..4705c063 100644 --- a/mopidy/handler.py +++ b/mopidy/handler.py @@ -43,7 +43,7 @@ class MpdHandler(object): @register(r'^addid "(?P[^"]*)"( (?P\d+))*$') def _add(self, uri, songpos=None): - pass # TODO + # TODO return {'id': 0} @register(r'^clear$') @@ -115,7 +115,7 @@ class MpdHandler(object): def _lsinfo(self, uri): if uri == u'/': return self._listplaylists() - pass # TODO + # TODO return self._listplaylists() @register(r'^move ((?P\d+)|(?P\d+):(?P\d+)*) (?P\d+)$')