Files
Nim/tests/stdlib/tmemlinesBuf.nim
Timothee Cour b667e288e2 move travis, appveyor, ci.yml.disabled to unmaintained/ (#17828)
* move travis, appveyor, ci.yml.disabled to unmaintained

* update some mentions of travis, appevyor

* fix test
2021-04-24 07:54:31 +02:00

10 lines
242 B
Nim

import memfiles
var inp = memfiles.open("tests/stdlib/tmemlinesBuf.nim")
var buffer: string = ""
var lineCount = 0
for line in lines(inp, buffer):
lineCount += 1
close(inp)
doAssert lineCount == 9, $lineCount # this file's number of lines