aboutsummaryrefslogtreecommitdiff
path: root/tests/test_collection.py
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2017-01-06 17:52:38 +0100
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2017-01-06 17:52:38 +0100
commitda03efeaed5c578d28ed50b5d91404e4c2e9bfbd (patch)
tree58b6bb4da138d2ff126ce39179f21978bc066adc /tests/test_collection.py
parent9df8aaabbcaae8c01879895516f06db0d5f8cd13 (diff)
Add an help string in a comment in the generated empty files
Diffstat (limited to 'tests/test_collection.py')
-rw-r--r--tests/test_collection.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test_collection.py b/tests/test_collection.py
index 9e3df7c..8e8e5f1 100644
--- a/tests/test_collection.py
+++ b/tests/test_collection.py
@@ -104,7 +104,11 @@ class testEntries(unittest.TestCase):
self.collection.save_entries(entries=[new_entry])
entry_fname = 'tests/data/simple/items/' + new_entry.fname
with open(entry_fname) as fp:
- written = ruamel.yaml.safe_load(fp)
+ text = fp.read()
+ self.assertIn('quantity (integer): how many items are there', text)
+ self.assertIn('other (yaml):', text)
+ self.assertNotIn('position (string)', text)
+ written = ruamel.yaml.safe_load(text)
self.assertIsInstance(written['quantity'], int)
self.assertIsInstance(written['name'], str)
os.remove(entry_fname)