summary refs log tree commit diff stats
path: root/tests/assert/testhelper.nim
blob: 754d562ec9c0063a7590dcd2b6a0257e18281e82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
from strutils import endsWith, split
from ospaths import isAbsolute

proc checkMsg*(msg, expectedEnd, name: string)=
  let filePrefix = msg.split(' ', maxSplit = 1)[0]
  if not filePrefix.isAbsolute:
    echo name, ":not absolute: `", msg & "`"
  elif not msg.endsWith expectedEnd:
    echo name, ":expected suffix:\n`" & expectedEnd & "`\ngot:\n`" & msg & "`"
  else:
    echo name, ":ok"