move tests to testament (#16101)

* move tests to testament

* minor

* fix random

* disable test random

(cherry picked from commit cbc793b30b)
This commit is contained in:
flywind
2020-11-25 02:06:41 +08:00
committed by narimiran
parent 99032ca07b
commit cfb38c2383
56 changed files with 2205 additions and 2232 deletions

View File

@@ -66,8 +66,3 @@ proc unidecode*(s: string): string =
var c = int(r)
if c <=% 127: add(result, chr(c))
elif c <% translationTable.len: add(result, translationTable[c-128])
when isMainModule:
#loadUnidecodeTable("lib/pure/unidecode/unidecode.dat")
doAssert unidecode("Äußerst") == "Ausserst"
doAssert unidecode("北京") == "Bei Jing "