summary refs log tree commit diff stats
path: root/tests/stdlib/tpunycode.nim
blob: 596c5ef63e45fc7c0704bbd8565eb98539857a14 (plain) (blame)
1
2
3
4
5
import punycode

doAssert(decode(encode("", "bücher")) == "bücher")
doAssert(decode(encode("münchen")) == "münchen")
doAssert encode("xn--", "münchen") == "xn--mnchen-3ya"