diff --git a/.gitignore b/.gitignore index 45d62d8..bf97536 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.sw? +tests/tlexer diff --git a/src/vcard/private/lexer.nim b/src/vcard/private/lexer.nim index f20ca5b..830c293 100644 --- a/src/vcard/private/lexer.nim +++ b/src/vcard/private/lexer.nim @@ -1,4 +1,4 @@ -import std/[streams, unicode] +import std/[streams, unicode, unittest] type VCardLexer* = object of RootObj input: Stream @@ -145,3 +145,17 @@ proc peekRune*(vcl: var VCardLexer): Rune = proc getColNumber*(vcl: VCardLexer, pos: int): int = if vcl.lineStart < pos: return pos - vcl.lineStart else: return (vcl.buffer.len - vcl.lineStart) + pos + + +suite "vcard/lexer": + + func expectBfr(l: VCardLexer, s: string): bool = + for i in 0..