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

Version Path
epics-2.7.0 spec/orders/cct_spec.rb
epics-2.6.0 spec/orders/cct_spec.rb
epics-2.5.0 spec/orders/cct_spec.rb
epics-2.4.0 spec/orders/cct_spec.rb
epics-2.3.0 spec/orders/cct_spec.rb
epics-2.2.0 spec/orders/cct_spec.rb
epics-2.1.2 spec/orders/cct_spec.rb
epics-2.1.1 spec/orders/cct_spec.rb
epics-2.1.0 spec/orders/cct_spec.rb
epics-2.0.0 spec/orders/cct_spec.rb
epics-1.8.1 spec/orders/cct_spec.rb
epics-1.8.0 spec/orders/cct_spec.rb
epics-1.7.2 spec/orders/cct_spec.rb
epics-1.7.1 spec/orders/cct_spec.rb
epics-1.7.0 spec/orders/cct_spec.rb