mirror of
https://github.com/beetbox/beets.git
synced 2026-02-22 23:33:50 +01:00
add test for wlof's albumartist searching fix
This commit is contained in:
parent
f69f69cecf
commit
b5c38970cc
1 changed files with 4 additions and 0 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in a new issue