summaryrefslogtreecommitdiff
path: root/_test
diff options
context:
space:
mode:
authorRuamel/Anthon van der Neut <bitbucket@ruamel.eu>2018-09-19 19:08:58 +0000
committerRuamel/Anthon van der Neut <bitbucket@ruamel.eu>2018-09-19 19:08:58 +0000
commitae9ec4ee6738d0ed07d60d67e95ebbb09484313d (patch)
tree0c3eb5aa2fcae9eddcd705a15dc9e21f4d7bafcc /_test
parent25fa66864a90c92ef0cc2f6fed3850d3978aa89c (diff)
parentc242392fb97608e4f0859163cecec34773146542 (diff)
downloadruamel.yaml-ae9ec4ee6738d0ed07d60d67e95ebbb09484313d.tar.gz
Merged in sixolet/ruamel-yaml/indent-properly (pull request #37)
Stop explicitly-indented literals from stacking with flow-based indents.
Diffstat (limited to '_test')
-rw-r--r--_test/test_literal.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/_test/test_literal.py b/_test/test_literal.py
index 698ece5..a9b34e1 100644
--- a/_test/test_literal.py
+++ b/_test/test_literal.py
@@ -217,6 +217,18 @@ class TestNoIndent:
print(type(d), repr(d))
yaml.round_trip(inp)
+ def test_nested_literal_doc_indent_marker(self):
+ yaml = YAML()
+ yaml.explicit_start = True
+ inp = """
+ ---
+ a: |2
+ some more
+ text
+ """
+ d = yaml.load(inp)
+ print(type(d), repr(d))
+ yaml.round_trip(inp)
class Test_RoundTripLiteral:
def test_rt_root_literal_scalar_no_indent(self):