自从升级到 RSpec 3RSpec.describe
后,我生成的规范文件不仅包含describe
,而且还显式包含了类型,例如:type => :model
. 例如,这是刚刚为名为“Plan”的类生成的模型规范文件:
require 'rails_helper'
RSpec.describe Plan, :type => :model do
pending "add some examples to (or delete) #{__FILE__}"
end
我宁愿让它看起来像这样(注意第 3 行的更改):
require 'rails_helper'
describe Plan do
pending "add some examples to (or delete) #{__FILE__}"
end
...“类型”调用似乎特别多余,因为我config.infer_spec_type_from_file_location!
在rails_helper
.
如何让 RSpec 生成看起来像我的第二个示例的规范文件?我不想每次都手动编辑它。