Sha256: 812a176511b8b5fb94816776dddcb0cbc35764fe99117f6cc7d7bab4161a78e1
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
require 'spec_helper' describe BrDanfe::DanfeLib::Icmstot 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"> <ICMSTot> <vBC>1.23</vBC> <vICMS>2.34</vICMS> <vBCST>3.45</vBCST> <vST>4.56</vST> <vProd>5.67</vProd> <vFrete>6.78</vFrete> <vSeg>7.89</vSeg> <vDesc>9.01</vDesc> <vIPI>0.12</vIPI> <vOutro>1.34</vOutro> <vNF>4.35</vNF> </ICMSTot> </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}icmstot#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/icmstot_spec.rb |