Sha256: 8c5523e6f9ac025ca479f5014590df820ac5e58cd3a58d5167d50b10ed77e601
Contents?: true
Size: 873 Bytes
Versions: 15
Compression:
Stored size: 873 Bytes
Contents
RSpec.describe Epics::CCT do let(:client) { Epics::Client.new( File.open(File.join( File.dirname(__FILE__), '..', 'fixtures', 'SIZBN001.key')), 'secret' , 'https://194.180.18.30/ebicsweb/ebicsweb', 'SIZBN001', 'EBIX', 'EBICS') } let(:document) { File.read( File.join( File.dirname(__FILE__), '..', 'fixtures', 'xml', 'cd1.xml') ) } subject { described_class.new(client, document) } describe 'order attributes' do it { expect(subject.header.to_s).to include('<OrderAttribute>OZHNN</OrderAttribute>') } it { expect(subject.header.to_s).to include('<OrderType>CCT</OrderType>') } end describe '#to_xml' do specify { expect(subject.to_xml).to be_a_valid_ebics_doc } end describe '#to_transfer_xml' do before { subject.transaction_id = SecureRandom.hex(16) } specify { expect(subject.to_transfer_xml).to be_a_valid_ebics_doc } end end
Version data entries
15 entries across 15 versions & 1 rubygems