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