获取'回溯'红宝石单元测试中的断言错误

时间:2014-07-14 16:27:24

标签: ruby unit-testing minitest

为单元测试创​​建辅助方法时,失败的控制台输出仅指示实际断言发生的行。

# Just an example method.
def test_equal(a, b)
  assert_equal a, b # Error indicates this line
end

test_equal(1, 2) # I'd like to know this line
test_equal(2, 3)

有没有办法显示类似“回溯”的内容或为这些断言错误提供更多上下文?

1 个答案:

答案 0 :(得分:5)

我进一步分析了这个问题,偶然发现了最小的方法Assertion.location。在那里,它经历了回溯(失败的断言导致类型为Minitest::Assertion < Exception的异常),将其反转并查找以下列关键字之一开头的方法:

  • assert
  • refute
  • flunk
  • pass
  • fail
  • raise
  • must
  • wont

因此,原始问题中的示例应如下所示:

# Just an example method.
def assert_my_equal(a, b)
  assert_equal a, b # Error indicates this line
end

assert_my_equal(1, 2) # This is the line number indicated in the failure report
assert_my_equal(2, 3)

这也解释了为什么Rails特定的断言方法行为正确:它们以assert_开头。