Sha256: 9d52a56a4f277335ef7e59aa510bd4359484fb86a2781ff9c21cec6d6e130eef
Contents?: true
Size: 616 Bytes
Versions: 3
Compression:
Stored size: 616 Bytes
Contents
require "spec_helper" describe BrDanfe::DetHeader 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) } 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 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/det_header_spec.rb |
br_danfe-0.0.7 | spec/lib/det_header_spec.rb |
br_danfe-0.0.6 | spec/lib/det_header_spec.rb |