我通常在我的Rspec测试中写这样的东西:
user.new(...)
user.should be_valid
问题是,当测试失败时,我无法看到用户对象上的错误。有没有一种很好的方法来重新编写这个测试,以便在Rspec输出中我会看到像user.errors.inspect
这样的东西?我已经尝试了user.errors.should be_empty
,但这仍然只是说“预期是真的,变得虚假。”
答案 0 :(得分:9)
您可以通过定义自定义匹配器来完成此操作。这样的事情可以解决问题。
RSpec::Matchers.define :be_valid do
match do |actual|
actual.valid?
end
failure_message_for_should do |actual|
"expected that #{actual} would be valid (errors: #{actual.errors.full_messages.inspect})"
end
failure_message_for_should_not do |actual|
"expected that #{actual} would not be valid"
end
description do
"be valid"
end
end