以下内容在spec_helper
中起作用:
RSpec.configure do |c|
c.filter_run :focus => true
c.run_all_when_everything_filtered = true
end
我使用spec_helper
而不是使用.rspec
:
--tag focus
run_all_when_everything_filtered
的命令行选项是什么?
是否存在将配置转换为命令行选项的一般方法?
RSpec 3.5.4