File: document_span_spec.rb

package info (click to toggle)
ruby-prawn 2.5.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,528 kB
  • sloc: ruby: 17,688; sh: 43; makefile: 20
file content (44 lines) | stat: -rw-r--r-- 1,012 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# frozen_string_literal: true

require 'spec_helper'

describe Prawn::Document do
  let(:pdf) { create_pdf }

  it 'onlies accept :position as option in debug mode' do
    Prawn.debug = true
    expect {
      pdf.span(350, x: 3) do
        # draw
      end
    }.to raise_error(Prawn::Errors::UnknownOption)
  end

  it 'has raise an error if :position is invalid' do
    expect {
      pdf.span(350, position: :x) do
        # draw
      end
    }.to raise_error(ArgumentError)
  end

  it 'restores 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

    expect(pdf.bounds).to eq(margin_box)
  end

  it 'does create a margin box' do
    margin_box =
      pdf.span(350, position: :center) {
        pdf.text("Here's some centered text in a 350 point column. " * 100)
      }

    expect(margin_box.top).to eq(792.0)
    expect(margin_box.bottom).to eq(0)
  end
end