mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 01:44:37 +00:00
8 lines
184 B
Nim
8 lines
184 B
Nim
import nre, unittest
|
|
|
|
suite "escape strings":
|
|
test "escape strings":
|
|
check("123".escapeRe() == "123")
|
|
check("[]".escapeRe() == r"\[\]")
|
|
check("()".escapeRe() == r"\(\)")
|