mirror of
https://github.com/beetbox/beets.git
synced 2026-02-20 06:14:22 +01:00
Add failing test for #1865
This commit is contained in:
parent
25045245d6
commit
19a5d8c45f
1 changed files with 6 additions and 0 deletions
|
|
@ -461,6 +461,12 @@ class PathQueryTest(_common.LibTestCase, TestHelper, AssertsMixin):
|
|||
results = self.lib.albums(q)
|
||||
self.assert_albums_matched(results, ['path album'])
|
||||
|
||||
@unittest.skip('unfixed (#1865)')
|
||||
def test_path_query_in_or_query(self):
|
||||
q = '/a/b , /a/b'
|
||||
results = self.lib.items(q)
|
||||
self.assert_items_matched(results, ['path item'])
|
||||
|
||||
def test_non_slashed_does_not_match_path(self):
|
||||
q = 'c.mp3'
|
||||
results = self.lib.items(q)
|
||||
|
|
|
|||
Loading…
Reference in a new issue