Update utf8.jl

pull/17/head
matthieugomez 2019-08-17 11:58:48 -04:00
parent 1650ec41f5
commit cf4f92cbf5
1 changed files with 5 additions and 0 deletions

View File

@ -14,3 +14,8 @@ s2 = "aüaüafs"
dist = QGram(4)
@test evaluate(dist, s1, s2) == 4
# check Substrings work
s1 = SubString(s1, 1, 4)
s2 = SubString(s2, 1, 4)
dist = QGram(2)
@test evaluate(dist, s1, s2) == 2