summary refs log tree commit diff stats
path: root/tests/stdlib/tmemlinesBuf.nim
blob: 3f0bd5182d8fc358cdbb53a8e8e30175b7913330 (plain) (blame)
1
2
3
4
5
6
7
8
9
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