diff --git a/src/vcard/private/lexer.nim b/src/vcard/private/lexer.nim index e95fdb4..d159b20 100644 --- a/src/vcard/private/lexer.nim +++ b/src/vcard/private/lexer.nim @@ -180,11 +180,6 @@ proc getColNumber*(vcl: VCardLexer, pos: int): int = if vcl.lineStart < pos: return pos - vcl.lineStart else: return (vcl.buffer.len - vcl.lineStart) + pos -## Unit Tests -## ============================================================================ - -import std/unittest - proc dumpLexerState*(l: VCardLexer): string = result = "pos = " & $l.pos & "\p" & @@ -195,7 +190,9 @@ proc dumpLexerState*(l: VCardLexer): string = "bufEnd = " & $l.bufEnd & "\p" & "buffer = " & l.buffer & "\p" -suite "vcard/lexer": +## Unit Tests +## ============================================================================ +proc runVcardLexerPrivateTests*() = const longTestString = "This is my test string. There are many like it but this one is mine." @@ -212,36 +209,34 @@ suite "vcard/lexer": return false return true - #test "fillBuffer doesn't double the buffer needlessly": - # var l: VCardLexer - proc readExpected(vcl: var VCardLexer, s: string): bool = for i in 0.. find(it.emailType.contains("PREF"))).isSome - - test "Jonathan Bernard VCard": - #const jdbVcard = readFile("tests/jdb.vcf") - let jdb = parseVCard3File("tests/jdb.vcf")[0] - check: - jdb.email.len == 7 - jdb.email[0].value == "jonathan@jdbernard.com" - jdb.email[0].emailType.contains("pref") - jdb.fn.value == "Jonathan Bernard" diff --git a/vcard.nimble b/vcard.nimble index ccc997f..22d7412 100644 --- a/vcard.nimble +++ b/vcard.nimble @@ -1,6 +1,6 @@ # Package -version = "0.1.2" +version = "0.1.3" author = "Jonathan Bernard" description = "Nim parser for the vCard format version 3.0 (4.0 planned)." license = "MIT"