Sha256: a85554507d7f4b023c87fdd08aad97f244fcd6939be92b73e2c43151f1998670
Contents?: true
Size: 664 Bytes
Versions: 32
Compression:
Stored size: 664 Bytes
Contents
require 'spec_helper' describe BrDanfe::CceLib::NfeKey do let(:base_dir) { './spec/fixtures/cce/lib/' } let(:output_pdf) { "#{base_dir}output.pdf" } let(:pdf) { BrDanfe::CceLib::Document.new } let(:xml) { File.read('./spec/fixtures/cce/v1.00/cce.xml') } subject { described_class.new(pdf, xml) } describe '#render' do before do subject.render File.delete(output_pdf) if File.exist?(output_pdf) end it 'renders header to the pdf' do expect(File.exist?(output_pdf)).to be_falsey pdf.render_file output_pdf expect("#{base_dir}nfe_key#render.pdf").to have_same_content_of file: output_pdf end end end
Version data entries
32 entries across 32 versions & 1 rubygems