summaryrefslogtreecommitdiff
path: root/_test/test_literal.py
diff options
context:
space:
mode:
Diffstat (limited to '_test/test_literal.py')
-rw-r--r--_test/test_literal.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/_test/test_literal.py b/_test/test_literal.py
index 74dca3d..5847269 100644
--- a/_test/test_literal.py
+++ b/_test/test_literal.py
@@ -240,6 +240,33 @@ class Test_RoundTripLiteral:
d = yaml.load(ys)
yaml.dump(d, compare=ys)
+ def test_rt_top_literal_scalar_no_indent_comment(self):
+ yaml = YAML()
+ yaml.explicit_start = True
+ s = 'testing123'
+ ys = """
+ --- | # a comment
+ {}
+ """.format(
+ s
+ )
+ d = yaml.load(ys)
+ yaml.dump(d, compare=ys)
+
+ def test_rt_top_literal_scalar_no_indent_leading_empty_line(self):
+ yaml = YAML()
+ yaml.explicit_start = True
+ s = 'testing123'
+ ys = """
+ --- |
+
+ {}
+ """.format(
+ s
+ )
+ d = yaml.load(ys)
+ yaml.dump(d, compare=ys)
+
def test_rt_top_literal_scalar_indent(self):
yaml = YAML()
yaml.explicit_start = True