summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_test/test_issues.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/_test/test_issues.py b/_test/test_issues.py
index 563fdbc..19eb577 100644
--- a/_test/test_issues.py
+++ b/_test/test_issues.py
@@ -247,3 +247,24 @@ class TestIssues:
print(d)
'''
assert save_and_run(dedent(program_src), tmpdir, optimized=True) == 0
+
+ @pytest.mark.xfail(strict=True)
+ def test_issue_221_add(self):
+ from ruamel.yaml.comments import CommentedSeq
+ a = CommentedSeq([1, 2, 3])
+ a + [4, 5]
+
+ @pytest.mark.xfail(strict=True)
+ def test_issue_221_copy(self):
+ from ruamel.yaml import YAML
+ yaml = YAML()
+ inp = dedent("""\
+ - d # 4
+ - a # 1
+ - c # 3
+ - e # 5
+ - b # 2
+ """)
+ a = yaml.load(dedent(inp))
+ print(a)
+ a.sort()