From 19a5d8c45fcec0a08859c8af45f40248a174de26 Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Thu, 4 Feb 2016 11:35:23 -0800 Subject: [PATCH] Add failing test for #1865 --- test/test_query.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/test_query.py b/test/test_query.py index 20267bf16..bb9572a1b 100644 --- a/test/test_query.py +++ b/test/test_query.py @@ -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)