In rspec: Can I attach a message to a check the same way as I would do in xUnit style test frameworks? How?
assert_equal value1, value2, "something is wrong"
|
|
|
The default messages are usually pretty useful though. |
|||||||||
|
|
In RSpec, it's the matcher's job to print a sensible failure message. The generic matchers that ship with RSpec can obviously only print generic non-descript failure messages, since they don't know anything about your particular domain. That's why it is recommended that you write your own domain-specific matchers, which will give you both more readable tests and more readable failure messages. Here's an example from the RSpec documentation:
Note: only Also, you can define As @Chris Johnsen shows, you can also explicitly pass a message to the expectation. However, you run the risk of losing the readability advantages. Compare this:
with this:
That would (roughly) be implemented like this:
|
|||||
|