Closed lowks closed 10 years ago
for example
[1,2,3].should_all.be(greater_than(0), msg="to ensure that all of them are bigger than 0")
?
sorry for the delay, I missed this issue.
You can use the desc method:
desc
[1,2,3].should_all.be_greater_than(0).desc('to ensure that all of them are bigger than 0')
for example
?