From ecfd774e64e8c137c02f4f462eca6259970e0a94 Mon Sep 17 00:00:00 2001 From: Johannes Knutsen Date: Tue, 30 Mar 2010 01:29:07 +0200 Subject: [PATCH] test find album "what" artist "what" command --- tests/mpd/frontend_test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/mpd/frontend_test.py b/tests/mpd/frontend_test.py index 881ee181..6705ed6f 100644 --- a/tests/mpd/frontend_test.py +++ b/tests/mpd/frontend_test.py @@ -913,6 +913,10 @@ class MusicDatabaseHandlerTest(unittest.TestCase): result = self.h.handle_request(u'find "somethingelse" "what"') self.assert_(u'ACK Unknown command' in result[0]) + def test_find_album_and_artist(self): + result = self.h.handle_request(u'find album "album_what" artist "artist_what"') + self.assert_(u'OK' in result) + def test_findadd(self): result = self.h.handle_request(u'findadd "album" "what"') self.assert_(u'OK' in result)