Skip to content

Commit e2fa2c8

Browse files
committed
Add a test for ISO-8859-x characters
1 parent 6f3aae4 commit e2fa2c8

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
outs:
2+
- md5: a0f35a1d58c95e6589c7397e7660e946
3+
size: 17089
4+
hash: md5
5+
path: test_text_nonascii_iso8859.png

pygmt/tests/test_text.py

+13
Original file line numberDiff line numberDiff line change
@@ -432,3 +432,16 @@ def test_text_quotation_marks():
432432
fig.basemap(projection="X4c/2c", region=[0, 4, 0, 2], frame=0)
433433
fig.text(x=2, y=1, text='\\234 ‘ ’ " “ ”', font="20p") # noqa: RUF001
434434
return fig
435+
436+
437+
@pytest.mark.mpl_image_compare
438+
def test_text_nonascii_iso8859():
439+
"""
440+
Test passing text strings with non-ascii characters in ISO-8859-4 encoding.
441+
"""
442+
fig = Figure()
443+
fig.basemap(region=[0, 10, 0, 10], projection="X10c", frame=["WSEN+tAāáâãäåB"])
444+
fig.text(position="TL", text="position-text:1ÉĘËĖ2")
445+
fig.text(x=1, y=1, text="xytext:1éęëė2")
446+
fig.text(x=[5, 5], y=[3, 5], text=["xytext1:ųúûüũūαζ∆❡", "xytext2:íîī∑π∇✉"])
447+
return fig

0 commit comments

Comments
 (0)