describe Rspec do
it 'should print arrays in a readable manner' do
arr = [
[0, :a, -1],
[1, :b, -2],
[2, :c, -3],
[3, :d, -4],
[4, :e, -5],
[6, :g, -7],
[7, :h, -8],
[8, :i, -9]
]
arr.should eql []
end
end
失败时:
Failures:
1) Rspec should print arrays in a readable manner
Failure/Error: arr.should eql []
expected: []
got: [[0, :a, -1], [1, :b, -2], [2, :c, -3], [3, :d, -4], [4, :e, -5], [6, :g, -7], [7, :h, -8], [8, :i, -9]]
有没有办法告诉Rspec打印失败?我的实际示例可以包含数组中的10-40个元素,每个元素都是5个整数和一个字符串。
答案 0 :(得分:2)
虽然这不是处理所有失败消息中所有对象显示的通用解决方案,但您可以使用https://www.relishapp.com/rspec/rspec-expectations/docs/customized-message中描述的技术为任何一个示例自定义失败消息。
结合Ruby的标准prettyprint函数的自定义,使用较小的线宽并将其结果作为字符串返回,为您提供:
arr.should be_empty, "expected: empty array\ngot:\n#{PP.pp(arr,'',20)}"