これは私の rspec ファイルです。このPosRequest.authorize_card(@payment_detail)
行は 3 回あります。このコンテキストをよりドライに書く方法はありますか?
context 'should get' do
it 'error message' do
PosRequest.authorize_card(@payment_detail)
@payment_detail.errorMsg.should_not eql(:nil)
end
it 'bank message' do
PosRequest.authorize_card(@payment_detail)
@payment_detail.cardMsg.should_not eql(:nil)
end
it 'claim message' do
PosRequest.authorize_card(@payment_detail)
@payment_detail.bankMsg.should_not eql(:nil)
end
end