我知道在RSpec中你可以通过省略块来轻松地将一个例子标记为不完整:
it 'is not a complete example'
但是有可能让RSpec失败任何不包含任何期望的例子吗?
IE。 RSpec很乐意通过这个例子:
it 'does not have any expectations but still passes' do
end
我想模仿PHPUnit的行为,它会导致任何不包含任何断言的测试失败。
答案 0 :(得分:1)
没有内置方式,但它只是feature I'd like to see added at some point。
与此同时,添加自己并不难:
http://blog.sorah.jp/2012/12/17/rspec-warn-for-no-expectations