nimgenEx/tests/unittests/common.nim
Joey Yakimowich-Payne de4cb3f783 Add tests for fileops
2018-07-14 10:24:53 +09:00

5 lines
124 B
Nim

import unittest
proc checkFile*(filepath, expected: string) =
let result = readFile(filepath)
check result == expected