RSpec 3으로 업그레이드 한 이후 생성 된 spec 파일에 describe
대신 RSpec.describe
이 포함되어 있고 예를 들어. :type => :model
. 예를 들어, 다음은 그냥 "계획"이라는 클래스에 대해 생성 된 모델 사양 파일입니다 :생성 된 사양에서 RSpec이 "Rspec.describe ..."및 "type : ..."을 사용하지 못하게하려면 어떻게해야합니까?
require 'rails_helper'
describe Plan do
pending "add some examples to (or delete) #{__FILE__}"
end
:
require 'rails_helper'
RSpec.describe Plan, :type => :model do
pending "add some examples to (or delete) #{__FILE__}"
end
차라리이 (3 행에 변화를 주) 것처럼 보일 거라고
... rails_helper
에 config.infer_spec_type_from_file_location!
이라는 줄이 있으므로 "유형"호출이 특히 중복되는 것 같습니다.
RSpec이 제 2 예의 스펙 파일을 생성하도록하려면 어떻게해야합니까? 매번 수동으로 편집하지 않아도됩니다.