可以将RSpec配置为失败任何不包含任何期望的示例吗?

时间:2015-05-20 13:52:50

标签: ruby rspec

我知道在RSpec中你可以通过省略块来轻松地将一个例子标记为不完整:

it 'is not a complete example'

但是有可能让RSpec失败任何不包含任何期望的例子吗?

IE。 RSpec很乐意通过这个例子:

it 'does not have any expectations but still passes' do
end

我想模仿PHPUnit的行为,它会导致任何不包含任何断言的测试失败。

1 个答案:

答案 0 :(得分:1)

没有内置方式,但它只是feature I'd like to see added at some point

与此同时,添加自己并不难:

http://blog.sorah.jp/2012/12/17/rspec-warn-for-no-expectations