From b5c38970cc07a7b609cf36ccff2951f842070d23 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Wed, 23 Mar 2011 16:01:35 -0700 Subject: [PATCH] add test for wlof's albumartist searching fix --- test/test_query.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test_query.py b/test/test_query.py index cd5eb3875..4fa5b4eee 100644 --- a/test/test_query.py +++ b/test/test_query.py @@ -203,6 +203,10 @@ class BrowseTest(unittest.TestCase, AssertsMixin): def test_albums_matches_album(self): albums = list(self.lib.albums(query='person')) self.assertEqual(len(albums), 1) + + def test_albums_matches_albumartist(self): + albums = list(self.lib.albums(query='panda')) + self.assertEqual(len(albums), 1) def test_items_matches_title(self): items = self.lib.items(query='boracay')