aboutsummaryrefslogtreecommitdiff
path: root/tests/test_collection.py
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2016-12-13 17:36:40 +0100
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2016-12-13 17:36:40 +0100
commit8ec0cae371a0b392b81bf34d5ee849c233ebbf65 (patch)
treec5ffa1158e91de276717ca3b7e7bff7cc47d29ab /tests/test_collection.py
parent5eb7b948f5428cda280c323383c7b604cef78fb7 (diff)
Rename schema.yaml to settings.yaml
Diffstat (limited to 'tests/test_collection.py')
-rw-r--r--tests/test_collection.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test_collection.py b/tests/test_collection.py
index b70c85f..be9a4e5 100644
--- a/tests/test_collection.py
+++ b/tests/test_collection.py
@@ -12,7 +12,7 @@ class testCollectionLoading(unittest.TestCase):
def test_empty(self):
self.collection = lesana.Collection('tests/data/empty')
- self.assertEqual(self.collection.schema, {})
+ self.assertEqual(self.collection.settings, {})
self.collection.update_cache()
self.assertIsNotNone(self.collection.cache)
@@ -20,9 +20,9 @@ class testCollectionLoading(unittest.TestCase):
def test_simple(self):
self.collection = lesana.Collection('tests/data/simple')
- self.assertIsNotNone(self.collection.schema)
- self.assertEqual(self.collection.schema['name'], "Simple lesana collection")
- self.assertEqual(len(self.collection.schema['fields']), 3)
+ self.assertIsNotNone(self.collection.settings)
+ self.assertEqual(self.collection.settings['name'], "Simple lesana collection")
+ self.assertEqual(len(self.collection.settings['fields']), 3)
self.collection.update_cache()
self.assertIsNotNone(self.collection.cache)
@@ -36,7 +36,7 @@ class testCollectionLoading(unittest.TestCase):
self.assertIn("Invalid language", cm.output[0])
# The collection will default to english, but should still work.
self.collection.update_cache()
- self.assertIsNotNone(self.collection.schema)
+ self.assertIsNotNone(self.collection.settings)
self.assertIsNotNone(self.collection.cache)
self.assertIsNotNone(self.collection.stemmer)