Sha256: 472ac0398ce3f1f39cc7bb91e061d6c002abf49e8f01d8931e5889a67bfc2bf3

Contents?: true

Size: 1.06 KB

Versions: 3

Compression:

Stored size: 1.06 KB

Contents

require "spec_helper"

describe BrDanfe::Issqn do
  let(:base_dir) { "./spec/fixtures/lib/"}
  let(:output_pdf) { "#{base_dir}output.pdf" }

  let(:pdf) { BrDanfe::Document.new }
  let(:xml) { BrDanfe::XML.new(xml_as_string) }

  subject { described_class.new(pdf, xml) }

  describe "#render" do
    let(:xml_as_string) do
      <<-eos
      <NFe xmlns="http://www.portalfiscal.inf.br/nfe">
        <infNFe Id="NFe25111012345678901234550020000134151000134151" versao="2.00">
          <emit>
            <IM>2345</IM>
          </emit>
          <total>
            <ISSQNtot>
              <vServ>1.43</vServ>
              <vBC>2.34</vBC>
              <vISS>3.45</vISS>
            </ISSQNtot>
          </total>
        </infNFe>
      </NFe>
      eos
    end

    before do
      subject.render
      File.delete(output_pdf) if File.exist?(output_pdf)
    end

    it "renders xml to the pdf" do
      expect(File.exist?(output_pdf)).to be_falsey

      pdf.render_file output_pdf

      expect("#{base_dir}issqn#render.pdf").to be_same_file_as(output_pdf)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
br_danfe-0.0.8 spec/lib/issqn_spec.rb
br_danfe-0.0.7 spec/lib/issqn_spec.rb
br_danfe-0.0.6 spec/lib/issqn_spec.rb