Sha256: fdc8cba9ae4b34ece2e155133bd78f290b1b96804cb334826b881b52c9539a15
Contents?: true
Size: 1.3 KB
Versions: 1
Compression:
Stored size: 1.3 KB
Contents
require 'spec_helper' describe BrDanfe::DanfeLib::Dup do let(:base_dir) { './spec/fixtures/nfe/lib/' } let(:output_pdf) { "#{base_dir}output.pdf" } let(:pdf) { BrDanfe::DanfeLib::Document.new } let(:xml) { BrDanfe::DanfeLib::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"> <cobr> <dup> <nDup>1</nDup> <dVenc>2015-02-13</dVenc> <vDup>25.56</vDup> </dup> <dup> <nDup>2</nDup> <dVenc>2015-03-15</dVenc> <vDup>25.56</vDup> </dup> <dup> <nDup>3</nDup> <dVenc>2015-04-14</dVenc> <vDup>25.55</vDup> </dup> </cobr> </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}dup#render.pdf").to have_same_content_of file: output_pdf end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
br_danfe-0.11.2 | spec/lib/danfe_lib/dup_spec.rb |