summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-07-24 16:05:49 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-09-18 13:27:33 +0200
commitf59bfb6b8cebf98c7b25e95b7b498949f5462222 (patch)
tree8b7f77572a62838cb7e3f733c2c2cb1c9865f1dc
parentspec: Move specification of specification items (diff)
downloadrtems-central-f59bfb6b8cebf98c7b25e95b7b498949f5462222.tar.bz2
content: Add Content.ensure_blank_line()
-rw-r--r--rtemsspec/content.py5
-rw-r--r--rtemsspec/tests/test_content.py8
2 files changed, 13 insertions, 0 deletions
diff --git a/rtemsspec/content.py b/rtemsspec/content.py
index 5e8da8b6..cfef89c6 100644
--- a/rtemsspec/content.py
+++ b/rtemsspec/content.py
@@ -386,6 +386,11 @@ class Content:
""" Adds a blank line. """
self._lines.append("")
+ def ensure_blank_line(self):
+ """ Ensures that the last line is blank. """
+ if not self._lines or self._lines[-1]:
+ self._lines.append("")
+
def register_license(self, the_license: str) -> None:
""" Registers a licence for the content. """
licenses = re.split(r"\s+OR\s+", the_license)
diff --git a/rtemsspec/tests/test_content.py b/rtemsspec/tests/test_content.py
index de30276f..8383ca8e 100644
--- a/rtemsspec/tests/test_content.py
+++ b/rtemsspec/tests/test_content.py
@@ -178,6 +178,14 @@ def test_add_blank_line():
"""
+def test_ensure_blank_line():
+ content = Content("BSD-2-Clause", True)
+ content.ensure_blank_line()
+ content.ensure_blank_line()
+ assert str(content) == """
+"""
+
+
def test_indent():
content = Content("BSD-2-Clause", True)
content.add_blank_line()