前端之家收集整理的这篇文章主要介绍了
ruby – 如何在RSpec中避免“无用的上下文中使用==”?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在RSpec,如果我有警告和有
x.should == 42
another_line_of_code
那我就得到一个警告
warning: useless use of == in void context
有什么我可以做的除了
>关闭警告
>将其更改为bitbucket =(x.should == 42)
您也可以使用actual.should be == expected.它只是取决于你的看法更漂亮!
原文链接:https://www.f2er.com/ruby/273118.html