diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2021-03-19 23:06:08 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2021-03-19 23:06:08 +0100 |
commit | 16f62d709c2150abca46c111d07c5d7052111370 (patch) | |
tree | 0abc7f4ea3f6c218e115fa65c246b3fc0e7103ca /tests | |
parent | 897bd5e601f9a602b2e0aef592780c63d3730048 (diff) |
More improvements to to_yaml
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_templating.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_templating.py b/tests/test_templating.py index aadcf66..57d7f7a 100644 --- a/tests/test_templating.py +++ b/tests/test_templating.py @@ -52,6 +52,8 @@ class testFilters(unittest.TestCase): res = templating.to_yaml(s) self.assertTrue(res.startswith("|\n")) self.assertNotIn('\n', res.lstrip("|\n")) + for line in res.lstrip("|\n").split('\n'): + self.assertTrue(line.startswith(" ")) if __name__ == '__main__': |