summary refs log tree commit diff stats
path: root/tests/assert/tfaileddoassert.nim
blob: e1245f57854447081c068803e00d5053505ea506 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
discard """
  cmd: "nim $target -d:release $options $file"
  output: '''
test1:ok
test2:ok
'''
"""

import testhelper

onFailedAssert(msg):
  checkMsg(msg, "tfaileddoassert.nim(15, 9) `a == 2` foo", "test1")

var a = 1
doAssert(a == 2, "foo")

onFailedAssert(msg):
  checkMsg(msg, "tfaileddoassert.nim(20, 10) `a == 3` ", "test2")

doAssert a == 3