Sha256: bbb21a020fe310071a4161a1728c22ee71498c839a91fbbf4e93e1ea43a5e86b

Contents?: true

Size: 1.3 KB

Versions: 5

Compression:

Stored size: 1.3 KB

Contents

require 'spec_helper'

RSpec.describe Prawn::SVG::Elements::Polygon do
  let(:document) { Prawn::SVG::Document.new(svg, [800, 600], {width: 800, height: 600}) }

  subject do
    Prawn::SVG::Elements::Polygon.new(document, document.root, [], Prawn::SVG::State.new)
  end

  context "with a valid points attribute" do
    let(:svg) { '<polygon points="10 10 20,20 30,30" />' }

    it "renders the polygon" do
      subject.process
      expect(subject.base_calls).to eq [
        ["fill", [], {}, [
          ["move_to", [[10.0, 590.0]], {}, []],
          ["line_to", [[20.0, 580.0]], {}, []],
          ["line_to", [[30.0, 570.0]], {}, []],
          ["close_path", [], {}, []]]
        ]
      ]
    end
  end

  context "with a polygon that has an odd number of arguments" do
    let(:svg) { '<polygon points="10 10 20,20 30" />' }

    it "ignores the last one" do
      subject.process
      expect(subject.base_calls).to eq [
        ["fill", [], {}, [
          ["move_to", [[10.0, 590.0]], {}, []],
          ["line_to", [[20.0, 580.0]], {}, []],
          ["close_path", [], {}, []]]
        ]
      ]
    end
  end

  context "with a polygon that has no arguments" do
    let(:svg) { '<polygon points="" />' }

    it "renders nothing" do
      subject.process
      expect(subject.base_calls).to eq []
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
prawn-svg-0.34.2 spec/prawn/svg/elements/polygon_spec.rb
prawn-svg-0.34.1 spec/prawn/svg/elements/polygon_spec.rb
prawn-svg-0.34.0 spec/prawn/svg/elements/polygon_spec.rb
prawn-svg-0.33.0 spec/prawn/svg/elements/polygon_spec.rb
prawn-svg-0.32.0 spec/prawn/svg/elements/polygon_spec.rb