mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-03 19:52:36 +00:00
8 lines
172 B
Nim
8 lines
172 B
Nim
import unittest, nre
|
|
|
|
suite "Misc tests":
|
|
test "unicode":
|
|
check("".find(re("", "8")).match == "")
|
|
check("перевірка".replace(re(r"\w", "uW"), "") == "")
|
|
|