Sha256: f8ddffcd6b494876311061835a5f3fdc2476b796b59d47dbc6b773030304905f

Contents?: true

Size: 1.23 KB

Versions: 5

Compression:

Stored size: 1.23 KB

Contents

require 'spec_helper'

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

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

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

    it "renders the polyline" 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]], {}, []]]
        ]
      ]
    end
  end

  context "with a polyline that has an odd number of arguments" do
    let(:svg) { '<polyline 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]], {}, []]]
        ]
      ]
    end
  end

  context "with a polyline that has no arguments" do
    let(:svg) { '<polyline 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/polyline_spec.rb
prawn-svg-0.34.1 spec/prawn/svg/elements/polyline_spec.rb
prawn-svg-0.34.0 spec/prawn/svg/elements/polyline_spec.rb
prawn-svg-0.33.0 spec/prawn/svg/elements/polyline_spec.rb
prawn-svg-0.32.0 spec/prawn/svg/elements/polyline_spec.rb