Files
Nim/test/match.nim
2015-01-16 19:12:05 -05:00

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)