Sha256: d14595629de853f5c65c24d0b117ad9e130663b995de23b6f62b317157acbe38
Contents?: true
Size: 660 Bytes
Versions: 14
Compression:
Stored size: 660 Bytes
Contents
require "spec_helper" describe BrDanfe::DanfeLib::DetHeader 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) } describe "#render" do 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}det_header#render.pdf").to have_same_content_of file: output_pdf end end end
Version data entries
14 entries across 14 versions & 1 rubygems