summary refs log tree commit diff stats
path: root/tests/assert/testhelper.nim
blob: 2e5ede990e2ddbda6af3b4b0bf7215f8b5c10717 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
from strutils import endsWith, split
from os 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"