Sha256: ea7158e3b222fbfc81e124be2bb719449e950edb88aa2399ec118e629aa14686

Contents?: true

Size: 873 Bytes

Versions: 13

Compression:

Stored size: 873 Bytes

Contents

RSpec.describe Epics::CCS 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>DZHNN</OrderAttribute>') }
    it { expect(subject.header.to_s).to include('<OrderType>CCS</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

13 entries across 13 versions & 1 rubygems

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