Sha256: 706b187a016b03e3225557195864dae2a4e634db7cc35559457d4f44394dabc4

Contents?: true

Size: 1.06 KB

Versions: 9

Compression:

Stored size: 1.06 KB

Contents

# encoding: utf-8

require File.join(File.expand_path(File.dirname(__FILE__)), "spec_helper")

describe "drawing span" do    
  
  before(:each) {
    Prawn.debug = false
    create_pdf
  }   

  it "should only accept :position as option in debug mode" do
    Prawn.debug = true
    lambda { @pdf.span(350, {:x => 3}) {} }.should.raise(Prawn::Errors::UnknownOption)
  end

  it "should have raise an error if :position is invalid" do
    lambda { @pdf.span(350, :position => :x) {} }.should.raise(ArgumentError)
  end

  it "should restore the margin box when bounding box exits" do
    margin_box = @pdf.bounds

    @pdf.span(350, :position => :center) do
      @pdf.text "Here's some centered text in a 350 point column. " * 100
    end
    
    @pdf.bounds.should == margin_box
    
  end

  it "should do create a margin box" do
    y = @pdf.y
    margin_box = @pdf.span(350, :position => :center) do
      @pdf.text "Here's some centered text in a 350 point column. " * 100
    end
    
    margin_box.top.should == 792.0
    margin_box.bottom.should == 0    
    
  end  
  
end

  

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
prawn-core-0.7.2 spec/span_spec.rb
prawn-core-0.7.1 spec/span_spec.rb
prawn-layout-0.3.2 vendor/prawn-core/spec/span_spec.rb
prawn-core-0.6.3 spec/span_spec.rb
prawn-core-0.6.2 spec/span_spec.rb
prawn-layout-0.3.1 vendor/prawn-core/spec/span_spec.rb
prawn-core-0.6.1 spec/span_spec.rb
prawn-core-0.5.1 spec/span_spec.rb
prawn-core-0.5.0.1 spec/span_spec.rb