I am using rspec expectations with cucumber. It seems that when using multiple expects in a cucumber steps, cucumber evaluates them until first of them fails. However I want to continue running also other expects to get a clear picture of what went wrong. Can I somehow achieve this?
Example: -let's suppose that response = "1", code = "2" and status = "3"
expect(response).to eq("0")
expect(code).to eq("2")
expect(status).to eq("1")
Cucumber will fail when evaluating response variable. But I want to check value of other two variables and get output for wrong status value too. Is this possible?
The easiest would be:
If the test fails, you would see two hashes comparead, with a diff clearly visible.