summaryrefslogtreecommitdiff
path: root/_test
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2023-05-01 22:05:11 +0200
committerAnthon van der Neut <anthon@mnt.org>2023-05-01 22:05:11 +0200
commit7b9631c9b3f987d99888dea07893d4f77d772f34 (patch)
tree705d82c3d60faaa5007ebb692e24d2ef8184e126 /_test
parent913318287aacca50246fd44fa5682e3907c1c78a (diff)
parent0db66d2aa3c5abe79e55017435894898a2ebe898 (diff)
downloadruamel.yaml-7b9631c9b3f987d99888dea07893d4f77d772f34.tar.gz
Merge 449_secondary_tag_url_enc
Diffstat (limited to '_test')
-rw-r--r--_test/test_issues.py6
-rw-r--r--_test/test_tag.py9
2 files changed, 15 insertions, 0 deletions
diff --git a/_test/test_issues.py b/_test/test_issues.py
index ec90555..d722b74 100644
--- a/_test/test_issues.py
+++ b/_test/test_issues.py
@@ -864,6 +864,12 @@ class TestIssues:
"""
d = na_round_trip(inp) # NOQA
+ def test_issue_449(self):
+ inp = """\
+ emoji_index: !!python/name:materialx.emoji.twemoji
+ """
+ d = na_round_trip(inp) # NOQA
+
# @pytest.mark.xfail(strict=True, reason='bla bla', raises=AssertionError)
# def test_issue_ xxx(self) -> None:
# inp = """
diff --git a/_test/test_tag.py b/_test/test_tag.py
index bb20621..40e3f69 100644
--- a/_test/test_tag.py
+++ b/_test/test_tag.py
@@ -65,6 +65,15 @@ class TestIndentFailures:
language: python
""")
+ def test_spec_6_26_tag_shorthands(self):
+ round_trip("""\
+ %TAG !e! tag:example.com,2000:app/
+ ---
+ - !local foo
+ - !!str bar
+ - !e!tag%21 baz
+ """)
+
class TestRoundTripCustom:
def test_X1(self) -> None: