Sha256: 4267a6c6b25fc675710bff57c278b4b6275b2d93e8e10b1f932e4ebcc2529d7d
Contents?: true
Size: 572 Bytes
Versions: 1
Compression:
Stored size: 572 Bytes
Contents
require 'integration/integration_helper' describe 'a PDF with a text field' do describe 'filled with foo' do before(:each) do p = pdf do 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.0.8 | spec/integration/text_field/spec.rb |