Sha256: 2d38d3644b06ea3b4436c7a0b00777c71d6a833793c9f77a3523067038800f0e

Contents?: true

Size: 890 Bytes

Versions: 1

Compression:

Stored size: 890 Bytes

Contents

require 'spec_helper'

describe GroupDocs::Document::Field do
  it_behaves_like GroupDocs::Api::Entity

  it { should have_accessor(:page) }
  it { should have_accessor(:name) }
  it { should have_accessor(:type) }
  it { should have_accessor(:rect) }

  describe '#rect=' do
    it 'converts passed hash to GroupDocs::Document::Rectangle object' do
      subject.rect = { :x => 0.90, :y => 0.05, :width => 0.06745, :height => 0.005967 }
      subject.rectangle.should be_a(GroupDocs::Document::Rectangle)
      subject.rectangle.x.should == 0.90
      subject.rectangle.y.should == 0.05
      subject.rectangle.w.should == 0.06745
      subject.rectangle.h.should == 0.005967
    end

    it 'does nothing when nil is passed' do
      subject.rect = nil
      subject.rectangle.should be_nil
    end
  end

  it { should alias_accessor(:rectangle, :rect) }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
groupdocs-2.3.0 spec/groupdocs/document/field_spec.rb