Sha256: 9b9f272112a79dc85c534e5d8c0aa4e4294f8bafc73c918993356f966f0ad90c
Contents?: true
Size: 861 Bytes
Versions: 13
Compression:
Stored size: 861 Bytes
Contents
describe MangoPay::PayIn::Giropay::Web, type: :feature do include_context 'wallets' include_context 'payins' def check_type_and_status(payin) expect(payin['Type']).to eq('PAYIN') expect(payin['Nature']).to eq('REGULAR') expect(payin['PaymentType']).to eq('GIROPAY') expect(payin['ExecutionType']).to eq('WEB') expect(payin['Status']).to eq('CREATED') end describe 'CREATE' do it 'creates a giropay web payin' do created = new_payin_giropay_web expect(created['Id']).not_to be_nil check_type_and_status(created) end end describe 'FETCH' do it 'fetches a payin' do created = new_payin_giropay_web fetched = MangoPay::PayIn.fetch(created['Id']) expect(fetched['Id']).to eq(created['Id']) check_type_and_status(created) check_type_and_status(fetched) end end end
Version data entries
13 entries across 13 versions & 1 rubygems