Add test for headlines with no content lines.

This commit is contained in:
Sergio Martínez Portela 2020-11-07 00:24:28 +01:00
parent 2372fc597c
commit f08d9428d6
2 changed files with 35 additions and 1 deletions

View file

@ -40,7 +40,15 @@ class TestSerde(unittest.TestCase):
def test_mimic_write_file_01(self):
"""A goal of this library is to be able to update a file without changing parts not directly modified."""
with open(os.path.join(DIR, '01-simple.org')) as f:
with open(os.path.join(DIR, "01-simple.org")) as f:
orig = f.read()
doc = loads(orig)
self.assertEqual(dumps(doc), orig)
def test_mimic_write_file_01_second(self):
"""A goal of this library is to be able to update a file without changing parts not directly modified."""
with open(os.path.join(DIR, "01-simple-2.org")) as f:
orig = f.read()
doc = loads(orig)