diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-08-19 17:12:24 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-08-19 17:12:24 +0200 |
commit | 8e15a0763e3476e333b1e71b70015cf3bd757160 (patch) | |
tree | 953841bc576c5148681c29b50412a7a7a9f8f8a8 /tests/test_collection.py | |
parent | b368e0744d440cb2ba5fde8593325071b8389240 (diff) |
Support indexing list fields
Diffstat (limited to 'tests/test_collection.py')
-rw-r--r-- | tests/test_collection.py | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/tests/test_collection.py b/tests/test_collection.py index 9de681a..875a35a 100644 --- a/tests/test_collection.py +++ b/tests/test_collection.py @@ -232,13 +232,22 @@ class testComplexCollection(unittest.TestCase): self.collection.settings['name'], "Fully featured lesana collection" ) - self.assertEqual(len(self.collection.settings['fields']), 4) + self.assertEqual(len(self.collection.settings['fields']), 5) self.assertIsNotNone(self.collection.stemmer) - self.assertEqual(len(self.collection.indexed_fields), 2) + self.assertEqual(len(self.collection.indexed_fields), 4) def test_index(self): self.collection.update_cache() + def test_indexing_list(self): + self.collection.update_cache(['73097121f1874a6ea2f927db7dc4f11e.yaml']) + self.collection.start_search('tags:this') + res = self.collection.get_search_results() + matches = list(res) + self.assertEqual(len(matches), 1) + for m in matches: + self.assertIsInstance(m, lesana.Entry) + class testCollectionWithErrors(unittest.TestCase): @classmethod |