Sha256: 28fd813211a73f66320157770b2921d9c0c5c417a6a516ebe92e3df52dcf04c3
Contents?: true
Size: 1.06 KB
Versions: 12
Compression:
Stored size: 1.06 KB
Contents
require 'spec_helper' describe BrDanfe::DanfeLib::NfeLib::Ticket do let(:base_dir) { './spec/fixtures/nfe/lib/' } let(:output_pdf) { "#{base_dir}output.pdf" } let(:pdf) { BrDanfe::DanfeLib::NfeLib::Document.new } let(:xml) { BrDanfe::XML.new(xml_as_string) } subject { described_class.new(pdf, xml) } describe '#render' do let(:xml_as_string) do <<~XML <NFe xmlns="http://www.portalfiscal.inf.br/nfe"> <infNFe Id="NFe25111012345678901234550020000134151000134151" versao="2.00"> <ide> <nNF>1</nNF> <serie>1</serie> </ide> <emit> <xNome>Nome do Remetente Ltda</xNome> </emit> </infNFe> </NFe> XML 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}ticket#render.pdf").to have_same_content_of file: output_pdf end end end
Version data entries
12 entries across 12 versions & 1 rubygems