From 793b5fc54e94a3c40b7db0d1141ddea9a1d52c81 Mon Sep 17 00:00:00 2001 From: Anthon van der Neut Date: Wed, 17 Oct 2018 09:48:02 +0200 Subject: added failing test re issue #250 comment on sequence within sequence --- _test/test_issues.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to '_test') diff --git a/_test/test_issues.py b/_test/test_issues.py index 5776784..157021e 100644 --- a/_test/test_issues.py +++ b/_test/test_issues.py @@ -549,6 +549,17 @@ class TestIssues: """) yaml.round_trip(inp, outp=exp) # NOQA + @pytest.mark.xfail(strict=True, reason='bla bla', raises=AssertionError) + def test_issue_250(self): + inp = """ + # 1. + - - 1 + # 2. + - map: 2 + # 3. + - 4 + """ + d = round_trip(inp) # NOQA # @pytest.mark.xfail(strict=True, reason='bla bla', raises=AssertionError) # def test_issue_ xxx(self): -- cgit v1.2.1