@H_301_1@在RSpec,如果我有警告和有
x.should == 42 another_line_of_code
那我就得到一个警告
warning: useless use of == in void context
有什么我可以做的除了
>关闭警告
>将其更改为bitbucket =(x.should == 42)
解决方法
您也可以使用actual.should be == expected.它只是取决于你的看法更漂亮!