0
동일한 설명 블록에서 동일한 호출이 반복적으로 수행되는 경우.RSpec에서 반복되는 메소드 호출을 말끔하게하는 관용적 인 방법이 있습니까?
RSpec.describe Grant do
let(:grant) { Grant.make }
describe "#exchange!" do
it "destroys token" do
grant.exchange! # dry me up!
expect(grant).to be_destroyed
end
it "returns a Token" do
expect(grant.exchange!).to be_a(Token) # dry me up!
end
end
end
은 내가 subject
와 함께 할 방법을 근무했습니다 grant.exchange!
을 건조 할,하지만 난 명시 적 주제는 냄새 나는 알고있다.
감사합니다. 이것이 제가 끝내 준 것입니다. – Bungus