aboutsummaryrefslogtreecommitdiff
path: root/tests/unittests/common.nim
blob: 1769b01aa7c65503a61ee551d31714cfc8768dbd (plain)
1
2
3
4
5
import unittest

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