Sha256: 304e75086d02b2287a247ef18d2fd787aff658def43af3d554ff8a28d911905d

Contents?: true

Size: 1.26 KB

Versions: 10

Compression:

Stored size: 1.26 KB

Contents

require "rails_helper"

describe ::Dorsale::BillingMachine::QuotationSingleVatPdf, pdfs: true do
  before :each do
    ::Dorsale::BillingMachine.vat_mode = :single
  end

  let(:quotation) {
    q = create(:billing_machine_quotation)

    create(:billing_machine_quotation_line,
      :quotation => q,
      :vat_rate  => 19.6,
    )

    q
  }

  let(:content) {
    tempfile = Tempfile.new("pdf")
    tempfile.binmode
    tempfile.write(quotation.to_pdf)
    tempfile.flush
    Yomu.new(tempfile.path).text
  }

  it "should display global vat rate" do
    expect(content).to include "TVA 19,60 %"
    expect(content).to_not include "MONTANT TVA"
    expect(content).to_not include "TVA %"
  end

  it "should work with empty quotation" do
    id_card = Dorsale::BillingMachine::IdCard.new
    quotation = ::Dorsale::BillingMachine::Quotation.new(id_card: id_card)

    expect {
      quotation.to_pdf
    }.to_not raise_error
  end

  describe "attachment" do
    it "should build attachments" do
      quotation  = create(:billing_machine_quotation)
      attachment = create(:alexandrie_attachment, attachable: quotation)

      text = Yomu.read(:text, quotation.to_pdf).split("\n")
      expect(text).to include "page 1"
      expect(text).to include "page 2"
    end
  end

end



Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
dorsale-3.3.0 spec/pdfs/dorsale/billing_machine/quotation_single_vat_pdf_spec.rb
dorsale-3.2.0 spec/pdfs/dorsale/billing_machine/quotation_single_vat_pdf_spec.rb
dorsale-3.1.7 spec/pdfs/dorsale/billing_machine/quotation_single_vat_pdf_spec.rb
dorsale-3.1.6 spec/pdfs/dorsale/billing_machine/quotation_single_vat_pdf_spec.rb
dorsale-3.1.5 spec/pdfs/dorsale/billing_machine/quotation_single_vat_pdf_spec.rb
dorsale-3.1.4 spec/pdfs/dorsale/billing_machine/quotation_single_vat_pdf_spec.rb
dorsale-3.1.3 spec/pdfs/dorsale/billing_machine/quotation_single_vat_pdf_spec.rb
dorsale-3.1.2 spec/pdfs/dorsale/billing_machine/quotation_single_vat_pdf_spec.rb
dorsale-3.1.1 spec/pdfs/dorsale/billing_machine/quotation_single_vat_pdf_spec.rb
dorsale-3.1.0 spec/pdfs/dorsale/billing_machine/quotation_single_vat_pdf_spec.rb