Sha256: ba7ba7167c326aebae2184492737c4ef4f8a3b04aa5d14d05f80dac653c82a69

Contents?: true

Size: 1.17 KB

Versions: 2

Compression:

Stored size: 1.17 KB

Contents

# -*- encoding: utf-8 -*-
#
require 'spec_helper'

RSpec.describe 'MuĂșltiplos boletos' do #:nodoc:[all]
  before do
    @valid_attributes = {
      valor: 0.0,
      cedente: 'Kivanio Barbosa',
      documento_cedente: '12345678912',
      sacado: 'Claudio Pozzebom',
      sacado_documento: '12345678900',
      agencia: '4042',
      conta_corrente: '61900',
      convenio: 12_387_989,
      nosso_numero: '777700168'
    }
  end

  it 'imprimir mĂșltiplos boleto em lote' do
    boleto_1 = Bbrcobranca::Boleto::BancoBrasil.new(@valid_attributes)
    boleto_2 = Bbrcobranca::Boleto::Bradesco.new(@valid_attributes)
    boleto_3 = Bbrcobranca::Boleto::BancoBrasil.new(@valid_attributes)

    boletos = [boleto_1, boleto_2, boleto_3]

    %w(pdf jpg tif png).each do |format|
      file_body = Bbrcobranca::Boleto::Base.lote(boletos, formato: format.to_s.to_sym)
      tmp_file = Tempfile.new(['foobar.', format])
      tmp_file.puts file_body
      tmp_file.close
      expect(File.exist?(tmp_file.path)).to be_truthy
      expect(File.stat(tmp_file.path).zero?).to be_falsey
      expect(File.delete(tmp_file.path)).to be(1)
      expect(File.exist?(tmp_file.path)).to be_falsey
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bbrcobranca-0.0.2 spec/brcobranca/boletos_em_lote_spec.rb
bbrcobranca-0.0.1 spec/brcobranca/boletos_em_lote_spec.rb