mirror of
https://github.com/nim-lang/Nim.git
synced 2026-01-02 19:22:40 +00:00
7 lines
180 B
Nim
7 lines
180 B
Nim
include nre, unittest
|
|
|
|
suite "match":
|
|
test "upper bound must be exclusive":
|
|
check("abc".match(re"abc", endpos = 0) == nil)
|
|
check("abc".match(re"abc", endpos = 3) != nil)
|