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 1.23 2.34 3.45 4.56 5.67 6.78 7.89 9.01 0.12 1.34 4.35 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