Sha256: 20ccc14eef5aa8b2199b703796e296fab51bf17773821a2c181254bab9561816

Contents?: true

Size: 598 Bytes

Versions: 1

Compression:

Stored size: 598 Bytes

Contents

require 'integration/integration_helper'

describe 'a PDF with a text field' do
  describe 'filled with foo' do
    before(:each) do
      p = PDFRavager::Template.new do |t|
        t.text 'text_field', 'foo'
      end
      pdf_file = File.join(File.dirname(__FILE__), "pdf")
      @pdf_file = mktemp('.pdf')
      @pdf = p.ravage pdf_file, :out_file => @pdf_file
    end

    it 'should match expected.png when rendered' do
      png = pdf_to_png(@pdf_file)
      pix_diff, pct_diff = png_diff(png, File.join(File.dirname(__FILE__), "expected.png"))
      pix_diff.should be 0
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pdf_ravager-0.1.0 spec/integration/text_field/spec.rb