summary refs log tree commit diff stats
path: root/tests/stdlib/tunidecode.nim
blob: 653016ea966b18f01abe1a73f96357042f5f39c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
discard """
  cmd: "nim $target --hints:on -d:embedUnidecodeTable $options $file"
"""

import unidecode

import std/unidecode # #14112
import std/assertions

loadUnidecodeTable("lib/pure/unidecode/unidecode.dat")

doAssert unidecode("北京") == "Bei Jing "
doAssert unidecode("Äußerst") == "Ausserst"