spec/groupdocs/document/field_spec.rb in groupdocs-2.2.0 vs spec/groupdocs/document/field_spec.rb in groupdocs-2.3.0

- old
+ new

@@ -1,28 +1,28 @@ -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 +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